package.json•1.55 kB
{
"name": "@ryancardin/azuredevops-mcp-server",
"version": "1.0.3",
"description": "MCP server for Azure DevOps integration - provides seamless access to work items, repositories, projects, boards, and sprints",
"main": "dist/index.js",
"bin": {
"azuredevops-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc",
"build:ignore-errors": "tsc --skipLibCheck --noEmitOnError false",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"azure-devops",
"mcp",
"model-context-protocol",
"work-items",
"repositories",
"boards",
"sprints",
"devops",
"azure",
"ai-assistant",
"claude",
"integration"
],
"author": "Ryan Cardin <ryandcardin@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/RyanCardin15/AzureDevOps-MCP.git"
},
"bugs": {
"url": "https://github.com/RyanCardin15/AzureDevOps-MCP/issues"
},
"homepage": "https://github.com/RyanCardin15/AzureDevOps-MCP#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"azure-devops-node-api": "^14.1.0",
"dotenv": "^16.4.7",
"@azure/identity": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.13.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}