-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@ryancardin/azuredevops-mcp-server",
"version": "1.0.4",
"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 <[email protected]>",
"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.23.0",
"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"
}
}