@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.
Files changed (35) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +86 -65
  3. package/dist/adapters/jira-cloud/jira-client.d.ts +10 -1
  4. package/dist/adapters/jira-cloud/jira-client.js +1 -1
  5. package/dist/adapters/jira-cloud/jira-write.adapter.d.ts +35 -6
  6. package/dist/adapters/jira-cloud/jira-write.adapter.js +90 -10
  7. package/dist/application/apply-write.d.ts +25 -0
  8. package/dist/application/apply-write.js +151 -0
  9. package/dist/application/plan-write.d.ts +32 -0
  10. package/dist/application/plan-write.js +167 -0
  11. package/dist/application/write-plan-store.d.ts +42 -0
  12. package/dist/application/write-plan-store.js +69 -0
  13. package/dist/bootstrap/boot-health-gate.js +2 -2
  14. package/dist/bootstrap/mcp-config-merger.d.ts +8 -7
  15. package/dist/bootstrap/mcp-config-merger.js +7 -7
  16. package/dist/bootstrap/setup-plan.d.ts +8 -0
  17. package/dist/bootstrap/setup-plan.js +3 -2
  18. package/dist/cli/setup-wizard.js +1 -1
  19. package/dist/cli-entry.js +33 -33
  20. package/dist/deps.d.ts +15 -0
  21. package/dist/deps.js +8 -0
  22. package/dist/domain/errors.d.ts +1 -1
  23. package/dist/domain/errors.js +13 -0
  24. package/dist/domain/write.d.ts +117 -0
  25. package/dist/domain/write.js +33 -0
  26. package/dist/mcp/create-server.d.ts +8 -3
  27. package/dist/mcp/create-server.js +30 -6
  28. package/dist/mcp/tools/jira-write-apply.tool.d.ts +3 -0
  29. package/dist/mcp/tools/jira-write-apply.tool.js +33 -0
  30. package/dist/mcp/tools/jira-write-plan.tool.d.ts +3 -0
  31. package/dist/mcp/tools/jira-write-plan.tool.js +57 -0
  32. package/dist/policy/write-policy.d.ts +60 -0
  33. package/dist/policy/write-policy.js +114 -0
  34. package/dist/ports/jira-write.port.d.ts +18 -4
  35. package/package.json +69 -69
package/package.json CHANGED
@@ -1,69 +1,69 @@
1
- {
2
- "name": "@jam-mcp/server",
3
- "version": "1.0.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": "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.0.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
- }
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
+ }