├── .gitignore ├── .vscode └── settings.json ├── CLAUDE.md ├── LICENSE ├── README.md ├── download-docs.ps1 ├── pyproject.toml ├── src └── mcp_azure_devops │ ├── __init__.py │ ├── __main__.py │ ├── features │ ├── __init__.py │ ├── projects │ │ ├── __init__.py │ │ ├── common.py │ │ └── tools.py │ ├── teams │ │ ├── __init__.py │ │ ├── common.py │ │ └── tools.py │ └── work_items │ │ ├── __init__.py │ │ ├── common.py │ │ ├── formatting.py │ │ └── tools │ │ ├── __init__.py │ │ ├── comments.py │ │ ├── create.py │ │ ├── process.py │ │ ├── query.py │ │ ├── read.py │ │ ├── templates.py │ │ └── types.py │ ├── server.py │ └── utils │ ├── __init__.py │ ├── azure_client.py │ └── conventions_promp.py ├── start_server.sh ├── tests ├── __init__.py ├── features │ ├── __init__.py │ ├── projects │ │ ├── __init__.py │ │ └── test_tools.py │ ├── teams │ │ ├── __init__.py │ │ └── test_tools.py │ └── work_items │ │ ├── __init__.py │ │ ├── test_create.py │ │ ├── test_process.py │ │ ├── test_templates.py │ │ ├── test_tools.py │ │ └── test_types.py └── test_server.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/README.md -------------------------------------------------------------------------------- /download-docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/download-docs.ps1 -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/mcp_azure_devops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/__init__.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/__main__.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/__init__.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/projects/__init__.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/projects/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/projects/common.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/projects/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/projects/tools.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/teams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/teams/__init__.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/teams/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/teams/common.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/teams/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/teams/tools.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/__init__.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/common.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/formatting.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/tools/__init__.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/tools/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/tools/comments.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/tools/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/tools/create.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/tools/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/tools/process.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/tools/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/tools/query.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/tools/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/tools/read.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/tools/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/tools/templates.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/features/work_items/tools/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/features/work_items/tools/types.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/server.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/utils/__init__.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/utils/azure_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/utils/azure_client.py -------------------------------------------------------------------------------- /src/mcp_azure_devops/utils/conventions_promp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/src/mcp_azure_devops/utils/conventions_promp.py -------------------------------------------------------------------------------- /start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/start_server.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Test suite for MCP Azure DevOps server. 3 | """ 4 | -------------------------------------------------------------------------------- /tests/features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/__init__.py -------------------------------------------------------------------------------- /tests/features/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/projects/__init__.py -------------------------------------------------------------------------------- /tests/features/projects/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/projects/test_tools.py -------------------------------------------------------------------------------- /tests/features/teams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/teams/__init__.py -------------------------------------------------------------------------------- /tests/features/teams/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/teams/test_tools.py -------------------------------------------------------------------------------- /tests/features/work_items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/work_items/__init__.py -------------------------------------------------------------------------------- /tests/features/work_items/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/work_items/test_create.py -------------------------------------------------------------------------------- /tests/features/work_items/test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/work_items/test_process.py -------------------------------------------------------------------------------- /tests/features/work_items/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/work_items/test_templates.py -------------------------------------------------------------------------------- /tests/features/work_items/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/work_items/test_tools.py -------------------------------------------------------------------------------- /tests/features/work_items/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/features/work_items/test_types.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vortiago/mcp-azure-devops/HEAD/uv.lock --------------------------------------------------------------------------------