{"id":26937489,"url":"https://github.com/Vortiago/mcp-azure-devops","last_synced_at":"2025-04-02T13:15:35.819Z","repository":{"id":283140734,"uuid":"948085438","full_name":"Vortiago/mcp-azure-devops","owner":"Vortiago","description":"A Model Context Protocol (MCP) server enabling AI assistants to interact with Azure DevOps services via Python SDK.","archived":false,"fork":false,"pushed_at":"2025-03-29T07:04:43.000Z","size":141,"stargazers_count":4,"open_issues_count":7,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-29T08:19:31.446Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Vortiago.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-13T18:14:14.000Z","updated_at":"2025-03-28T15:30:03.000Z","dependencies_parsed_at":"2025-03-18T19:43:32.603Z","dependency_job_id":"f16a44d7-eec6-45a6-9e8f-f49244c42f0d","html_url":"https://github.com/Vortiago/mcp-azure-devops","commit_stats":null,"previous_names":["vortiago/mcp-azure-devops"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vortiago%2Fmcp-azure-devops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vortiago%2Fmcp-azure-devops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vortiago%2Fmcp-azure-devops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vortiago%2Fmcp-azure-devops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Vortiago","download_url":"https://codeload.github.com/Vortiago/mcp-azure-devops/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246819778,"owners_count":20839095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-02T13:15:17.483Z","updated_at":"2025-04-02T13:15:35.806Z","avatar_url":"https://github.com/Vortiago.png","language":"Python","funding_links":[],"categories":["Cloud Infrastructure","Developer Tools","📚 Projects (1974 total)","Community Servers","🤖 AI/ML","Task and Project Management","カテゴリ","Table of Contents"],"sub_categories":["☁️ Cloud Providers","CI/CD \u0026 DevOps","MCP Servers","🛠️ \u003ca name=\"developer-tools\"\u003e\u003c/a\u003e開発ツール","Developer Tools"],"readme":"# MCP Azure DevOps Server\n\nA Model Context Protocol (MCP) server enabling AI assistants to interact with Azure DevOps services.\n\n## Overview\n\nThis project implements a Model Context Protocol (MCP) server that allows AI assistants (like Claude) to interact with Azure DevOps, providing a bridge between natural language interactions and the Azure DevOps REST API.\n\n## Features\n\nCurrently implemented:\n\n### Work Item Management\n- **Query Work Items**: Search for work items using WIQL queries\n- **Get Work Item Details**: View complete work item information\n- **Create Work Items**: Add new tasks, bugs, user stories, and other work item types\n- **Update Work Items**: Modify existing work items' fields and properties\n- **Add Comments**: Post comments on work items\n- **View Comments**: Retrieve the comment history for a work item\n- **Parent-Child Relationships**: Establish hierarchy between work items\n\n### Project Management\n- **Get Projects**: View all accessible projects in the organization\n- **Get Teams**: List all teams within the organization\n- **Team Members**: View team membership information\n- **Team Area Paths**: Retrieve area paths assigned to teams\n- **Team Iterations**: Access team iteration/sprint configurations\n\nPlanned features:\n- **Pipeline Operations**: Query pipeline status and trigger new pipeline runs\n- **Pull Request Handling**: Create, update, and review Pull Requests\n- **Sprint Management**: Plan and manage sprints and iterations\n- **Branch Policy Administration**: Configure and manage branch policies\n\n## Getting Started\n\n### Prerequisites\n\n- Python 3.10+\n- Azure DevOps account with appropriate permissions\n- Personal Access Token (PAT) with necessary scopes for Azure DevOps API access\n\n### Installation\n\n```bash\n# Clone the repository\ngit clone https://github.com/Vortiago/mcp-azure-devops.git\ncd mcp-azure-devops\n\n# Install in development mode\nuv pip install -e \".[dev]\"\n\n# Install from PyPi\npip install mcp-azure-devops\n```\n\n### Configuration\n\nCreate a `.env` file in the project root with the following variables:\n\n```\nAZURE_DEVOPS_PAT=your_personal_access_token\nAZURE_DEVOPS_ORGANIZATION_URL=https://your-organization.visualstudio.com or https://dev.azure.com/your-organisation\n```\n\nNote: Make sure to provide the full URL to your Azure DevOps organization.\n\n### Running the Server\n\n```bash\n# Development mode with the MCP Inspector\nmcp dev src/mcp_azure_devops/server.py\n\n# Install in Claude Desktop\nmcp install src/mcp_azure_devops/server.py --name \"Azure DevOps Assistant\"\n```\n\n## Usage Examples\n\n### Query Work Items\n\n```\nShow me all active bugs assigned to me in the current sprint\n```\n\n### Create a Work Item\n\n```\nCreate a user story in the ProjectX with the title \"Implement user authentication\" and assign it to john.doe@example.com\n```\n\n### Update a Work Item\n\n```\nChange the status of bug #1234 to \"Resolved\" and add a comment explaining the fix\n```\n\n### Team Management\n\n```\nShow me all the team members in the \"Core Development\" team in the \"ProjectX\" project\n```\n\n### View Project Structure\n\n```\nList all projects in my organization and show me the iterations for the Development team\n```\n\n## Development\n\nThe project is structured into feature modules, each implementing specific Azure DevOps capabilities:\n\n- `features/work_items`: Work item management functionality\n- `features/projects`: Project management capabilities\n- `features/teams`: Team management features\n- `utils`: Common utilities and client initialization\n\nFor more information on development, see the [CLAUDE.md](CLAUDE.md) file.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Built with [MCP Python SDK](https://github.com/modelcontextprotocol/python-sdk)\n- Uses [Azure DevOps Python API](https://github.com/microsoft/azure-devops-python-api)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FVortiago%2Fmcp-azure-devops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FVortiago%2Fmcp-azure-devops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FVortiago%2Fmcp-azure-devops/lists"}