-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 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
62
63
64
65
66
{
"name": "@burcusg/azure-devops-mcp-onprem",
"version": "1.2.0",
"description": "MCP server for on-premises Azure DevOps Server (TFS). Covers Work Items, Git, TFVC (shelvesets, changesets, labels), Pipelines, Wiki, and Test Plans. Bridges Claude, GitHub Copilot, Cursor, Antigravity, and other AI assistants.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"azure-devops-mcp-onprem": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"azure-devops",
"azure-devops-server",
"tfs",
"tfvc",
"shelveset",
"on-premises",
"claude",
"copilot",
"cursor",
"antigravity"
],
"author": "Burcu Sipahioglu Gokbulut",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/burcusipahioglu/azure-devops-mcp-onprem"
},
"bugs": {
"url": "https://github.com/burcusipahioglu/azure-devops-mcp-onprem/issues"
},
"homepage": "https://github.com/burcusipahioglu/azure-devops-mcp-onprem#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"azure-devops-node-api": "^14.1.0",
"dotenv": "^17.4.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}