@jam-mcp/server 1.0.0 → 1.1.0
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/LICENSE +21 -21
- package/README.md +86 -65
- package/dist/adapters/jira-cloud/jira-client.d.ts +10 -1
- package/dist/adapters/jira-cloud/jira-client.js +1 -1
- package/dist/adapters/jira-cloud/jira-write.adapter.d.ts +35 -6
- package/dist/adapters/jira-cloud/jira-write.adapter.js +90 -10
- package/dist/application/apply-write.d.ts +25 -0
- package/dist/application/apply-write.js +151 -0
- package/dist/application/plan-write.d.ts +32 -0
- package/dist/application/plan-write.js +167 -0
- package/dist/application/write-plan-store.d.ts +42 -0
- package/dist/application/write-plan-store.js +69 -0
- package/dist/bootstrap/boot-health-gate.js +2 -2
- package/dist/bootstrap/mcp-config-merger.d.ts +8 -7
- package/dist/bootstrap/mcp-config-merger.js +7 -7
- package/dist/bootstrap/setup-plan.d.ts +8 -0
- package/dist/bootstrap/setup-plan.js +3 -2
- package/dist/cli/setup-wizard.js +1 -1
- package/dist/cli-entry.js +33 -33
- package/dist/deps.d.ts +15 -0
- package/dist/deps.js +8 -0
- package/dist/domain/errors.d.ts +1 -1
- package/dist/domain/errors.js +13 -0
- package/dist/domain/write.d.ts +117 -0
- package/dist/domain/write.js +33 -0
- package/dist/mcp/create-server.d.ts +8 -3
- package/dist/mcp/create-server.js +30 -6
- package/dist/mcp/tools/jira-write-apply.tool.d.ts +3 -0
- package/dist/mcp/tools/jira-write-apply.tool.js +33 -0
- package/dist/mcp/tools/jira-write-plan.tool.d.ts +3 -0
- package/dist/mcp/tools/jira-write-plan.tool.js +57 -0
- package/dist/policy/write-policy.d.ts +60 -0
- package/dist/policy/write-policy.js +114 -0
- package/dist/ports/jira-write.port.d.ts +18 -4
- package/package.json +69 -69
package/package.json
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@jam-mcp/server",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "JAM (Jira Agent MCP) - agent-facing Jira access layer: MCP server, setup core, and CLI",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"jira",
|
|
7
|
-
"mcp",
|
|
8
|
-
"model-context-protocol",
|
|
9
|
-
"claude-code",
|
|
10
|
-
"codex",
|
|
11
|
-
"jira-api"
|
|
12
|
-
],
|
|
13
|
-
"homepage": "https://github.com/colosair/jam#readme",
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://github.com/colosair/jam/issues"
|
|
16
|
-
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/colosair/jam.git",
|
|
20
|
-
"directory": "packages/server"
|
|
21
|
-
},
|
|
22
|
-
"author": "colosair (https://github.com/colosair)",
|
|
23
|
-
"type": "module",
|
|
24
|
-
"bin": {
|
|
25
|
-
"jam": "dist/index.js"
|
|
26
|
-
},
|
|
27
|
-
"main": "dist/index.js",
|
|
28
|
-
"types": "dist/index.d.ts",
|
|
29
|
-
"engines": {
|
|
30
|
-
"node": ">=20"
|
|
31
|
-
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist",
|
|
34
|
-
"!dist/**/*.js.map",
|
|
35
|
-
"README.md"
|
|
36
|
-
],
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "tsc",
|
|
39
|
-
"dev": "tsc --watch",
|
|
40
|
-
"test": "vitest run",
|
|
41
|
-
"test:watch": "vitest"
|
|
42
|
-
},
|
|
43
|
-
"dependencies": {
|
|
44
|
-
"@jam-mcp/launcher": "1.
|
|
45
|
-
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
46
|
-
"yaml": "^2.9.0",
|
|
47
|
-
"zod": "^4.4.3"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@types/node": "^24.0.0",
|
|
51
|
-
"typescript": "^5.9.0",
|
|
52
|
-
"vitest": "^4.1.11"
|
|
53
|
-
},
|
|
54
|
-
"license": "MIT",
|
|
55
|
-
"exports": {
|
|
56
|
-
".": {
|
|
57
|
-
"types": "./dist/index.d.ts",
|
|
58
|
-
"default": "./dist/index.js"
|
|
59
|
-
},
|
|
60
|
-
"./cli-entry": {
|
|
61
|
-
"types": "./dist/cli-entry.d.ts",
|
|
62
|
-
"default": "./dist/cli-entry.js"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"publishConfig": {
|
|
66
|
-
"access": "public",
|
|
67
|
-
"registry": "https://registry.npmjs.org/"
|
|
68
|
-
}
|
|
69
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@jam-mcp/server",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "JAM (Jira Agent MCP) - agent-facing Jira access layer: MCP server, setup core, and CLI",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"jira",
|
|
7
|
+
"mcp",
|
|
8
|
+
"model-context-protocol",
|
|
9
|
+
"claude-code",
|
|
10
|
+
"codex",
|
|
11
|
+
"jira-api"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/colosair/jam#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/colosair/jam/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/colosair/jam.git",
|
|
20
|
+
"directory": "packages/server"
|
|
21
|
+
},
|
|
22
|
+
"author": "colosair (https://github.com/colosair)",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"bin": {
|
|
25
|
+
"jam-server": "dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"main": "dist/index.js",
|
|
28
|
+
"types": "dist/index.d.ts",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"!dist/**/*.js.map",
|
|
35
|
+
"README.md"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsc",
|
|
39
|
+
"dev": "tsc --watch",
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"test:watch": "vitest"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@jam-mcp/launcher": "1.1.0",
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
46
|
+
"yaml": "^2.9.0",
|
|
47
|
+
"zod": "^4.4.3"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^24.0.0",
|
|
51
|
+
"typescript": "^5.9.0",
|
|
52
|
+
"vitest": "^4.1.11"
|
|
53
|
+
},
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"exports": {
|
|
56
|
+
".": {
|
|
57
|
+
"types": "./dist/index.d.ts",
|
|
58
|
+
"default": "./dist/index.js"
|
|
59
|
+
},
|
|
60
|
+
"./cli-entry": {
|
|
61
|
+
"types": "./dist/cli-entry.d.ts",
|
|
62
|
+
"default": "./dist/cli-entry.js"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public",
|
|
67
|
+
"registry": "https://registry.npmjs.org/"
|
|
68
|
+
}
|
|
69
|
+
}
|