zentao-bugfix-mcp 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +36 -0
- package/README.en.md +207 -0
- package/README.md +207 -0
- package/bin/zentao-bugfix-mcp.js +2 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +63845 -0
- package/dist/main.js.map +1 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zentao-bugfix-mcp",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "stdio MCP server for ZenTao REST v1 and bugfix workflows",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"zentao-bugfix-mcp": "./bin/zentao-bugfix-mcp.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/main.js",
|
|
10
|
+
"types": "./dist/main.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/zentao-bugfix-mcp.js",
|
|
13
|
+
"dist",
|
|
14
|
+
".env.example",
|
|
15
|
+
"README.md",
|
|
16
|
+
"README.en.md"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"mcp",
|
|
20
|
+
"zentao",
|
|
21
|
+
"bugfix",
|
|
22
|
+
"model-context-protocol"
|
|
23
|
+
],
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20.0.0"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
30
|
+
"@types/node": "^25.5.2",
|
|
31
|
+
"tsup": "^8.5.0",
|
|
32
|
+
"typescript": "^6.0.2",
|
|
33
|
+
"@zentao-bugfix/mcp-tools": "0.1.1",
|
|
34
|
+
"@zentao-bugfix/zentao-core": "0.1.1"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"dev": "tsup --watch",
|
|
39
|
+
"start": "node dist/main.js",
|
|
40
|
+
"typecheck": "tsc --noEmit",
|
|
41
|
+
"smoke": "node bin/smoke-list-tools.mjs"
|
|
42
|
+
}
|
|
43
|
+
}
|