We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a436ea0 commit 0f6ed3fCopy full SHA for 0f6ed3f
bin/mcp-server-azure-devops.js
@@ -0,0 +1,3 @@
1
+#!/usr/bin/env node
2
+
3
+require('../dist/index.js');
package.json
@@ -5,10 +5,11 @@
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
7
"bin": {
8
- "mcp-server-azure-devops": "./dist/index.js"
+ "mcp-server-azure-devops": "./bin/mcp-server-azure-devops.js"
9
},
10
"files": [
11
"dist",
12
+ "bin",
13
"docs",
14
"LICENSE",
15
"README.md"
@@ -19,7 +20,7 @@
19
20
}
21
22
"scripts": {
- "build": "tsc && chmod +x dist/index.js",
23
+ "build": "tsc && chmod +x dist/index.js && chmod +x bin/mcp-server-azure-devops.js",
24
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
25
"start": "node dist/index.js",
26
"inspector": "npm run build && npx @modelcontextprotocol/inspector node dist/index.js",
0 commit comments