├── .clinerules ├── .env.example ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── copilot-instructions.md ├── release-please-config.json ├── release-please-manifest.json ├── skills │ ├── azure-devops-rest-api │ │ ├── SKILL.md │ │ ├── references │ │ │ └── api_areas.md │ │ └── scripts │ │ │ ├── clone_specs.sh │ │ │ └── find_endpoint.py │ └── skill-creator │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── references │ │ ├── output-patterns.md │ │ └── workflows.md │ │ └── scripts │ │ ├── init_skill.py │ │ └── quick_validate.py └── workflows │ ├── main.yml │ ├── release-please.yml │ └── update-skills.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .kilocode └── mcp.json ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── create_branch.sh ├── docs ├── authentication.md ├── azure-identity-authentication.md ├── ci-setup.md ├── examples │ ├── README.md │ ├── azure-cli-authentication.env │ ├── azure-identity-authentication.env │ └── pat-authentication.env ├── testing │ ├── README.md │ └── setup.md └── tools │ ├── README.md │ ├── core-navigation.md │ ├── organizations.md │ ├── pipelines.md │ ├── projects.md │ ├── pull-requests.md │ ├── repositories.md │ ├── resources.md │ ├── search.md │ ├── user-tools.md │ ├── wiki.md │ └── work-items.md ├── finish_task.sh ├── jest.e2e.config.js ├── jest.int.config.js ├── jest.unit.config.js ├── memory └── tasks_memory_2025-05-26T16-18-03.json ├── package.json ├── project-management ├── planning │ ├── architecture-guide.md │ ├── azure-identity-authentication-design.md │ ├── project-plan.md │ ├── project-structure.md │ ├── tech-stack.md │ └── the-dream-team.md ├── startup.xml ├── tdd-cycle.xml └── troubleshooter.xml ├── setup_env.sh ├── shrimp-rules.md ├── src ├── clients │ └── azure-devops.ts ├── features │ ├── organizations │ │ ├── __test__ │ │ │ └── test-helpers.ts │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── list-organizations │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── schemas.ts │ │ ├── tool-definitions.ts │ │ └── types.ts │ ├── pipelines │ │ ├── artifacts.spec.unit.ts │ │ ├── artifacts.ts │ │ ├── download-pipeline-artifact │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-pipeline-log │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-pipeline-run │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-pipeline │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── helpers.ts │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── list-pipeline-runs │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── list-pipelines │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── pipeline-timeline │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── tool-definitions.ts │ │ ├── trigger-pipeline │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ └── types.ts │ ├── projects │ │ ├── __test__ │ │ │ └── test-helpers.ts │ │ ├── get-project-details │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-project │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── list-projects │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── schemas.ts │ │ ├── tool-definitions.ts │ │ └── types.ts │ ├── pull-requests │ │ ├── add-pull-request-comment │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── create-pull-request │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-pull-request-changes │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── get-pull-request-checks │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── get-pull-request-comments │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── list-pull-requests │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── schemas.ts │ │ ├── tool-definitions.ts │ │ ├── types.ts │ │ └── update-pull-request │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ ├── repositories │ │ ├── __test__ │ │ │ └── test-helpers.ts │ │ ├── create-branch │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── create-commit │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── get-all-repositories-tree │ │ │ ├── __snapshots__ │ │ │ │ └── feature.spec.unit.ts.snap │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-file-content │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-repository-details │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-repository-tree │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── get-repository │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── list-commits │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── list-repositories │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── schemas.ts │ │ ├── tool-definitions.ts │ │ └── types.ts │ ├── search │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── schemas.ts │ │ ├── search-code │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── search-wiki │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── search-work-items │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ └── index.ts │ │ ├── tool-definitions.ts │ │ └── types.ts │ ├── users │ │ ├── get-me │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── schemas.ts │ │ ├── tool-definitions.ts │ │ └── types.ts │ ├── wikis │ │ ├── create-wiki-page │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── create-wiki │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-wiki-page │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── get-wikis │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── list-wiki-pages │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.spec.unit.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ │ ├── tool-definitions.ts │ │ └── update-wiki-page │ │ │ ├── feature.spec.int.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ └── schema.ts │ └── work-items │ │ ├── __test__ │ │ ├── fixtures.ts │ │ ├── test-helpers.ts │ │ └── test-utils.ts │ │ ├── create-work-item │ │ ├── feature.spec.int.ts │ │ ├── feature.spec.unit.ts │ │ ├── feature.ts │ │ ├── index.ts │ │ └── schema.ts │ │ ├── get-work-item │ │ ├── feature.spec.int.ts │ │ ├── feature.spec.unit.ts │ │ ├── feature.ts │ │ ├── index.ts │ │ └── schema.ts │ │ ├── index.spec.unit.ts │ │ ├── index.ts │ │ ├── list-work-items │ │ ├── feature.spec.int.ts │ │ ├── feature.spec.unit.ts │ │ ├── feature.ts │ │ ├── index.ts │ │ └── schema.ts │ │ ├── manage-work-item-link │ │ ├── feature.spec.int.ts │ │ ├── feature.spec.unit.ts │ │ ├── feature.ts │ │ ├── index.ts │ │ └── schema.ts │ │ ├── schemas.ts │ │ ├── tool-definitions.ts │ │ ├── types.ts │ │ └── update-work-item │ │ ├── feature.spec.int.ts │ │ ├── feature.spec.unit.ts │ │ ├── feature.ts │ │ ├── index.ts │ │ └── schema.ts ├── index.spec.unit.ts ├── index.ts ├── server.spec.e2e.ts ├── server.ts ├── shared │ ├── api │ │ ├── client.ts │ │ └── index.ts │ ├── auth │ │ ├── auth-factory.ts │ │ ├── client-factory.ts │ │ └── index.ts │ ├── config │ │ ├── index.ts │ │ └── version.ts │ ├── enums │ │ ├── index.spec.unit.ts │ │ └── index.ts │ ├── errors │ │ ├── azure-devops-errors.ts │ │ ├── handle-request-error.ts │ │ └── index.ts │ ├── test │ │ └── test-helpers.ts │ └── types │ │ ├── config.ts │ │ ├── index.ts │ │ ├── request-handler.ts │ │ └── tool-definition.ts ├── types │ └── diff.d.ts └── utils │ ├── environment.spec.unit.ts │ └── environment.ts ├── tasks.json ├── tests └── setup.ts └── tsconfig.json /.clinerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.clinerules -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Tiberriver256 2 | -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/release-please-config.json -------------------------------------------------------------------------------- /.github/release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.1.43" 3 | } -------------------------------------------------------------------------------- /.github/skills/azure-devops-rest-api/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/azure-devops-rest-api/SKILL.md -------------------------------------------------------------------------------- /.github/skills/azure-devops-rest-api/references/api_areas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/azure-devops-rest-api/references/api_areas.md -------------------------------------------------------------------------------- /.github/skills/azure-devops-rest-api/scripts/clone_specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/azure-devops-rest-api/scripts/clone_specs.sh -------------------------------------------------------------------------------- /.github/skills/azure-devops-rest-api/scripts/find_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/azure-devops-rest-api/scripts/find_endpoint.py -------------------------------------------------------------------------------- /.github/skills/skill-creator/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/skill-creator/LICENSE.txt -------------------------------------------------------------------------------- /.github/skills/skill-creator/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/skill-creator/SKILL.md -------------------------------------------------------------------------------- /.github/skills/skill-creator/references/output-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/skill-creator/references/output-patterns.md -------------------------------------------------------------------------------- /.github/skills/skill-creator/references/workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/skill-creator/references/workflows.md -------------------------------------------------------------------------------- /.github/skills/skill-creator/scripts/init_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/skill-creator/scripts/init_skill.py -------------------------------------------------------------------------------- /.github/skills/skill-creator/scripts/quick_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/skills/skill-creator/scripts/quick_validate.py -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/update-skills.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.github/workflows/update-skills.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.kilocode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.kilocode/mcp.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /create_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/create_branch.sh -------------------------------------------------------------------------------- /docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/authentication.md -------------------------------------------------------------------------------- /docs/azure-identity-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/azure-identity-authentication.md -------------------------------------------------------------------------------- /docs/ci-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/ci-setup.md -------------------------------------------------------------------------------- /docs/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/examples/README.md -------------------------------------------------------------------------------- /docs/examples/azure-cli-authentication.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/examples/azure-cli-authentication.env -------------------------------------------------------------------------------- /docs/examples/azure-identity-authentication.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/examples/azure-identity-authentication.env -------------------------------------------------------------------------------- /docs/examples/pat-authentication.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/examples/pat-authentication.env -------------------------------------------------------------------------------- /docs/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/testing/README.md -------------------------------------------------------------------------------- /docs/testing/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/testing/setup.md -------------------------------------------------------------------------------- /docs/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/README.md -------------------------------------------------------------------------------- /docs/tools/core-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/core-navigation.md -------------------------------------------------------------------------------- /docs/tools/organizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/organizations.md -------------------------------------------------------------------------------- /docs/tools/pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/pipelines.md -------------------------------------------------------------------------------- /docs/tools/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/projects.md -------------------------------------------------------------------------------- /docs/tools/pull-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/pull-requests.md -------------------------------------------------------------------------------- /docs/tools/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/repositories.md -------------------------------------------------------------------------------- /docs/tools/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/resources.md -------------------------------------------------------------------------------- /docs/tools/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/search.md -------------------------------------------------------------------------------- /docs/tools/user-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/user-tools.md -------------------------------------------------------------------------------- /docs/tools/wiki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/wiki.md -------------------------------------------------------------------------------- /docs/tools/work-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/docs/tools/work-items.md -------------------------------------------------------------------------------- /finish_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/finish_task.sh -------------------------------------------------------------------------------- /jest.e2e.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/jest.e2e.config.js -------------------------------------------------------------------------------- /jest.int.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/jest.int.config.js -------------------------------------------------------------------------------- /jest.unit.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/jest.unit.config.js -------------------------------------------------------------------------------- /memory/tasks_memory_2025-05-26T16-18-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/memory/tasks_memory_2025-05-26T16-18-03.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/package.json -------------------------------------------------------------------------------- /project-management/planning/architecture-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/planning/architecture-guide.md -------------------------------------------------------------------------------- /project-management/planning/azure-identity-authentication-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/planning/azure-identity-authentication-design.md -------------------------------------------------------------------------------- /project-management/planning/project-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/planning/project-plan.md -------------------------------------------------------------------------------- /project-management/planning/project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/planning/project-structure.md -------------------------------------------------------------------------------- /project-management/planning/tech-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/planning/tech-stack.md -------------------------------------------------------------------------------- /project-management/planning/the-dream-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/planning/the-dream-team.md -------------------------------------------------------------------------------- /project-management/startup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/startup.xml -------------------------------------------------------------------------------- /project-management/tdd-cycle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/tdd-cycle.xml -------------------------------------------------------------------------------- /project-management/troubleshooter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/project-management/troubleshooter.xml -------------------------------------------------------------------------------- /setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/setup_env.sh -------------------------------------------------------------------------------- /shrimp-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/shrimp-rules.md -------------------------------------------------------------------------------- /src/clients/azure-devops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/clients/azure-devops.ts -------------------------------------------------------------------------------- /src/features/organizations/__test__/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/__test__/test-helpers.ts -------------------------------------------------------------------------------- /src/features/organizations/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/organizations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/index.ts -------------------------------------------------------------------------------- /src/features/organizations/list-organizations/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/list-organizations/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/organizations/list-organizations/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/list-organizations/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/organizations/list-organizations/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/list-organizations/feature.ts -------------------------------------------------------------------------------- /src/features/organizations/list-organizations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/list-organizations/index.ts -------------------------------------------------------------------------------- /src/features/organizations/list-organizations/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/list-organizations/schema.ts -------------------------------------------------------------------------------- /src/features/organizations/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/schemas.ts -------------------------------------------------------------------------------- /src/features/organizations/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/organizations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/organizations/types.ts -------------------------------------------------------------------------------- /src/features/pipelines/artifacts.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/artifacts.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/artifacts.ts -------------------------------------------------------------------------------- /src/features/pipelines/download-pipeline-artifact/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/download-pipeline-artifact/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/download-pipeline-artifact/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/download-pipeline-artifact/feature.ts -------------------------------------------------------------------------------- /src/features/pipelines/download-pipeline-artifact/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/download-pipeline-artifact/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/download-pipeline-artifact/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/download-pipeline-artifact/schema.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline-log/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline-log/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline-log/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline-log/feature.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline-log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline-log/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline-log/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline-log/schema.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline-run/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline-run/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline-run/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline-run/feature.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline-run/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline-run/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline-run/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline-run/schema.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline/feature.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/get-pipeline/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/get-pipeline/schema.ts -------------------------------------------------------------------------------- /src/features/pipelines/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/helpers.ts -------------------------------------------------------------------------------- /src/features/pipelines/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipeline-runs/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipeline-runs/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipeline-runs/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipeline-runs/feature.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipeline-runs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipeline-runs/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipeline-runs/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipeline-runs/schema.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipelines/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipelines/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipelines/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipelines/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipelines/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipelines/feature.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipelines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipelines/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/list-pipelines/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/list-pipelines/schema.ts -------------------------------------------------------------------------------- /src/features/pipelines/pipeline-timeline/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/pipeline-timeline/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/pipeline-timeline/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/pipeline-timeline/feature.ts -------------------------------------------------------------------------------- /src/features/pipelines/pipeline-timeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/pipeline-timeline/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/pipeline-timeline/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/pipeline-timeline/schema.ts -------------------------------------------------------------------------------- /src/features/pipelines/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/pipelines/trigger-pipeline/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/trigger-pipeline/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/pipelines/trigger-pipeline/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/trigger-pipeline/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pipelines/trigger-pipeline/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/trigger-pipeline/feature.ts -------------------------------------------------------------------------------- /src/features/pipelines/trigger-pipeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/trigger-pipeline/index.ts -------------------------------------------------------------------------------- /src/features/pipelines/trigger-pipeline/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/trigger-pipeline/schema.ts -------------------------------------------------------------------------------- /src/features/pipelines/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pipelines/types.ts -------------------------------------------------------------------------------- /src/features/projects/__test__/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/__test__/test-helpers.ts -------------------------------------------------------------------------------- /src/features/projects/get-project-details/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project-details/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/projects/get-project-details/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project-details/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/projects/get-project-details/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project-details/feature.ts -------------------------------------------------------------------------------- /src/features/projects/get-project-details/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project-details/index.ts -------------------------------------------------------------------------------- /src/features/projects/get-project-details/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project-details/schema.ts -------------------------------------------------------------------------------- /src/features/projects/get-project/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/projects/get-project/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/projects/get-project/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project/feature.ts -------------------------------------------------------------------------------- /src/features/projects/get-project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project/index.ts -------------------------------------------------------------------------------- /src/features/projects/get-project/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/get-project/schema.ts -------------------------------------------------------------------------------- /src/features/projects/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/index.ts -------------------------------------------------------------------------------- /src/features/projects/list-projects/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/list-projects/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/projects/list-projects/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/list-projects/feature.ts -------------------------------------------------------------------------------- /src/features/projects/list-projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/list-projects/index.ts -------------------------------------------------------------------------------- /src/features/projects/list-projects/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/list-projects/schema.ts -------------------------------------------------------------------------------- /src/features/projects/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/schemas.ts -------------------------------------------------------------------------------- /src/features/projects/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/projects/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/projects/types.ts -------------------------------------------------------------------------------- /src/features/pull-requests/add-pull-request-comment/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/add-pull-request-comment/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/pull-requests/add-pull-request-comment/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/add-pull-request-comment/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pull-requests/add-pull-request-comment/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/add-pull-request-comment/feature.ts -------------------------------------------------------------------------------- /src/features/pull-requests/add-pull-request-comment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/pull-requests/create-pull-request/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/create-pull-request/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/pull-requests/create-pull-request/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/create-pull-request/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pull-requests/create-pull-request/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/create-pull-request/feature.ts -------------------------------------------------------------------------------- /src/features/pull-requests/create-pull-request/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/create-pull-request/index.ts -------------------------------------------------------------------------------- /src/features/pull-requests/create-pull-request/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/create-pull-request/schema.ts -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-changes/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/get-pull-request-changes/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-changes/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/get-pull-request-changes/feature.ts -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-changes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-checks/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/get-pull-request-checks/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-checks/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/get-pull-request-checks/feature.ts -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-checks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-comments/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/get-pull-request-comments/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-comments/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/get-pull-request-comments/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-comments/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/get-pull-request-comments/feature.ts -------------------------------------------------------------------------------- /src/features/pull-requests/get-pull-request-comments/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/pull-requests/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pull-requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/index.ts -------------------------------------------------------------------------------- /src/features/pull-requests/list-pull-requests/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/list-pull-requests/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/pull-requests/list-pull-requests/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/list-pull-requests/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pull-requests/list-pull-requests/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/list-pull-requests/feature.ts -------------------------------------------------------------------------------- /src/features/pull-requests/list-pull-requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/list-pull-requests/index.ts -------------------------------------------------------------------------------- /src/features/pull-requests/list-pull-requests/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/list-pull-requests/schema.ts -------------------------------------------------------------------------------- /src/features/pull-requests/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/schemas.ts -------------------------------------------------------------------------------- /src/features/pull-requests/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/pull-requests/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/types.ts -------------------------------------------------------------------------------- /src/features/pull-requests/update-pull-request/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/update-pull-request/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/pull-requests/update-pull-request/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/update-pull-request/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/pull-requests/update-pull-request/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/pull-requests/update-pull-request/feature.ts -------------------------------------------------------------------------------- /src/features/pull-requests/update-pull-request/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/repositories/__test__/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/__test__/test-helpers.ts -------------------------------------------------------------------------------- /src/features/repositories/create-branch/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/create-branch/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/create-branch/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/create-branch/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/create-branch/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/repositories/create-commit/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/create-commit/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/create-commit/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/create-commit/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/create-commit/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/repositories/get-all-repositories-tree/__snapshots__/feature.spec.unit.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-all-repositories-tree/__snapshots__/feature.spec.unit.ts.snap -------------------------------------------------------------------------------- /src/features/repositories/get-all-repositories-tree/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-all-repositories-tree/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/repositories/get-all-repositories-tree/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-all-repositories-tree/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/get-all-repositories-tree/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-all-repositories-tree/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/get-all-repositories-tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-all-repositories-tree/index.ts -------------------------------------------------------------------------------- /src/features/repositories/get-all-repositories-tree/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-all-repositories-tree/schema.ts -------------------------------------------------------------------------------- /src/features/repositories/get-file-content/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-file-content/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/repositories/get-file-content/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-file-content/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/get-file-content/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-file-content/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/get-file-content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-file-content/index.ts -------------------------------------------------------------------------------- /src/features/repositories/get-file-content/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-file-content/schema.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository-details/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository-details/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository-details/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository-details/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository-details/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository-details/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository-details/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository-details/index.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository-details/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository-details/schema.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository-tree/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository-tree/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository-tree/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository-tree/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository-tree/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/repositories/get-repository/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository/index.ts -------------------------------------------------------------------------------- /src/features/repositories/get-repository/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/get-repository/schema.ts -------------------------------------------------------------------------------- /src/features/repositories/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/index.ts -------------------------------------------------------------------------------- /src/features/repositories/list-commits/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/list-commits/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/list-commits/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/list-commits/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/list-commits/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/repositories/list-repositories/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/list-repositories/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/repositories/list-repositories/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/list-repositories/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/repositories/list-repositories/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/list-repositories/feature.ts -------------------------------------------------------------------------------- /src/features/repositories/list-repositories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/list-repositories/index.ts -------------------------------------------------------------------------------- /src/features/repositories/list-repositories/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/list-repositories/schema.ts -------------------------------------------------------------------------------- /src/features/repositories/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/schemas.ts -------------------------------------------------------------------------------- /src/features/repositories/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/repositories/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/repositories/types.ts -------------------------------------------------------------------------------- /src/features/search/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/index.ts -------------------------------------------------------------------------------- /src/features/search/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/schemas.ts -------------------------------------------------------------------------------- /src/features/search/search-code/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-code/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/search/search-code/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-code/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/search/search-code/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-code/feature.ts -------------------------------------------------------------------------------- /src/features/search/search-code/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-code/index.ts -------------------------------------------------------------------------------- /src/features/search/search-wiki/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-wiki/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/search/search-wiki/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-wiki/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/search/search-wiki/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-wiki/feature.ts -------------------------------------------------------------------------------- /src/features/search/search-wiki/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/search/search-work-items/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-work-items/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/search/search-work-items/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-work-items/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/search/search-work-items/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/search-work-items/feature.ts -------------------------------------------------------------------------------- /src/features/search/search-work-items/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature'; 2 | -------------------------------------------------------------------------------- /src/features/search/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/search/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/search/types.ts -------------------------------------------------------------------------------- /src/features/users/get-me/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/get-me/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/users/get-me/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/get-me/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/users/get-me/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/get-me/feature.ts -------------------------------------------------------------------------------- /src/features/users/get-me/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/get-me/index.ts -------------------------------------------------------------------------------- /src/features/users/get-me/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/get-me/schema.ts -------------------------------------------------------------------------------- /src/features/users/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/index.ts -------------------------------------------------------------------------------- /src/features/users/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/schemas.ts -------------------------------------------------------------------------------- /src/features/users/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/users/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/users/types.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki-page/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki-page/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki-page/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki-page/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki-page/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki-page/feature.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki-page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki-page/index.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki-page/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki-page/schema.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki/feature.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki/index.ts -------------------------------------------------------------------------------- /src/features/wikis/create-wiki/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/create-wiki/schema.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wiki-page/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wiki-page/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wiki-page/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wiki-page/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wiki-page/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wiki-page/feature.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wiki-page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wiki-page/index.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wiki-page/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wiki-page/schema.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wikis/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wikis/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wikis/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wikis/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wikis/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wikis/feature.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wikis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wikis/index.ts -------------------------------------------------------------------------------- /src/features/wikis/get-wikis/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/get-wikis/schema.ts -------------------------------------------------------------------------------- /src/features/wikis/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/wikis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/index.ts -------------------------------------------------------------------------------- /src/features/wikis/list-wiki-pages/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/list-wiki-pages/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/wikis/list-wiki-pages/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/list-wiki-pages/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/wikis/list-wiki-pages/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/list-wiki-pages/feature.ts -------------------------------------------------------------------------------- /src/features/wikis/list-wiki-pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/list-wiki-pages/index.ts -------------------------------------------------------------------------------- /src/features/wikis/list-wiki-pages/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/list-wiki-pages/schema.ts -------------------------------------------------------------------------------- /src/features/wikis/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/wikis/update-wiki-page/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/update-wiki-page/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/wikis/update-wiki-page/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/update-wiki-page/feature.ts -------------------------------------------------------------------------------- /src/features/wikis/update-wiki-page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/update-wiki-page/index.ts -------------------------------------------------------------------------------- /src/features/wikis/update-wiki-page/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/wikis/update-wiki-page/schema.ts -------------------------------------------------------------------------------- /src/features/work-items/__test__/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/__test__/fixtures.ts -------------------------------------------------------------------------------- /src/features/work-items/__test__/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/__test__/test-helpers.ts -------------------------------------------------------------------------------- /src/features/work-items/__test__/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/__test__/test-utils.ts -------------------------------------------------------------------------------- /src/features/work-items/create-work-item/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/create-work-item/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/work-items/create-work-item/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/create-work-item/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/work-items/create-work-item/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/create-work-item/feature.ts -------------------------------------------------------------------------------- /src/features/work-items/create-work-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/create-work-item/index.ts -------------------------------------------------------------------------------- /src/features/work-items/create-work-item/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/create-work-item/schema.ts -------------------------------------------------------------------------------- /src/features/work-items/get-work-item/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/get-work-item/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/work-items/get-work-item/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/get-work-item/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/work-items/get-work-item/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/get-work-item/feature.ts -------------------------------------------------------------------------------- /src/features/work-items/get-work-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/get-work-item/index.ts -------------------------------------------------------------------------------- /src/features/work-items/get-work-item/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/get-work-item/schema.ts -------------------------------------------------------------------------------- /src/features/work-items/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/index.spec.unit.ts -------------------------------------------------------------------------------- /src/features/work-items/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/index.ts -------------------------------------------------------------------------------- /src/features/work-items/list-work-items/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/list-work-items/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/work-items/list-work-items/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/list-work-items/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/work-items/list-work-items/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/list-work-items/feature.ts -------------------------------------------------------------------------------- /src/features/work-items/list-work-items/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/list-work-items/index.ts -------------------------------------------------------------------------------- /src/features/work-items/list-work-items/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/list-work-items/schema.ts -------------------------------------------------------------------------------- /src/features/work-items/manage-work-item-link/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/manage-work-item-link/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/work-items/manage-work-item-link/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/manage-work-item-link/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/work-items/manage-work-item-link/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/manage-work-item-link/feature.ts -------------------------------------------------------------------------------- /src/features/work-items/manage-work-item-link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/manage-work-item-link/index.ts -------------------------------------------------------------------------------- /src/features/work-items/manage-work-item-link/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/manage-work-item-link/schema.ts -------------------------------------------------------------------------------- /src/features/work-items/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/schemas.ts -------------------------------------------------------------------------------- /src/features/work-items/tool-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/tool-definitions.ts -------------------------------------------------------------------------------- /src/features/work-items/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/types.ts -------------------------------------------------------------------------------- /src/features/work-items/update-work-item/feature.spec.int.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/update-work-item/feature.spec.int.ts -------------------------------------------------------------------------------- /src/features/work-items/update-work-item/feature.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/update-work-item/feature.spec.unit.ts -------------------------------------------------------------------------------- /src/features/work-items/update-work-item/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/update-work-item/feature.ts -------------------------------------------------------------------------------- /src/features/work-items/update-work-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/update-work-item/index.ts -------------------------------------------------------------------------------- /src/features/work-items/update-work-item/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/features/work-items/update-work-item/schema.ts -------------------------------------------------------------------------------- /src/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/index.spec.unit.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/server.spec.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/server.spec.e2e.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/shared/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/api/client.ts -------------------------------------------------------------------------------- /src/shared/api/index.ts: -------------------------------------------------------------------------------- 1 | export * from './client'; 2 | -------------------------------------------------------------------------------- /src/shared/auth/auth-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/auth/auth-factory.ts -------------------------------------------------------------------------------- /src/shared/auth/client-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/auth/client-factory.ts -------------------------------------------------------------------------------- /src/shared/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/auth/index.ts -------------------------------------------------------------------------------- /src/shared/config/index.ts: -------------------------------------------------------------------------------- 1 | export * from './version'; 2 | -------------------------------------------------------------------------------- /src/shared/config/version.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Current version of the Azure DevOps MCP server 3 | */ 4 | export const VERSION = '0.1.0'; 5 | -------------------------------------------------------------------------------- /src/shared/enums/index.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/enums/index.spec.unit.ts -------------------------------------------------------------------------------- /src/shared/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/enums/index.ts -------------------------------------------------------------------------------- /src/shared/errors/azure-devops-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/errors/azure-devops-errors.ts -------------------------------------------------------------------------------- /src/shared/errors/handle-request-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/errors/handle-request-error.ts -------------------------------------------------------------------------------- /src/shared/errors/index.ts: -------------------------------------------------------------------------------- 1 | export * from './azure-devops-errors'; 2 | -------------------------------------------------------------------------------- /src/shared/test/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/test/test-helpers.ts -------------------------------------------------------------------------------- /src/shared/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/types/config.ts -------------------------------------------------------------------------------- /src/shared/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './config'; 2 | -------------------------------------------------------------------------------- /src/shared/types/request-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/types/request-handler.ts -------------------------------------------------------------------------------- /src/shared/types/tool-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/shared/types/tool-definition.ts -------------------------------------------------------------------------------- /src/types/diff.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'diff'; 2 | -------------------------------------------------------------------------------- /src/utils/environment.spec.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/utils/environment.spec.unit.ts -------------------------------------------------------------------------------- /src/utils/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/src/utils/environment.ts -------------------------------------------------------------------------------- /tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/tasks.json -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/tests/setup.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiberriver256/mcp-server-azure-devops/HEAD/tsconfig.json --------------------------------------------------------------------------------