@softspark/jira-mcp 1.10.0 → 1.12.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/NOTICE +5 -0
- package/README.md +12 -14
- package/dist/cli.js +57 -56
- package/dist/index.js +54 -54
- package/package.json +5 -22
- package/CHANGELOG.md +0 -311
package/NOTICE
CHANGED
|
@@ -19,6 +19,11 @@ limitations under the License.
|
|
|
19
19
|
If you redistribute this software or a derivative of it, Section 4(d) of the
|
|
20
20
|
License requires you to carry the contents of this NOTICE file with it.
|
|
21
21
|
|
|
22
|
+
This NOTICE covers jira-mcp only. Third-party dependencies, including code
|
|
23
|
+
bundled into dist/, retain their own copyright notices and licenses. Consult
|
|
24
|
+
package-lock.json for exact dependency versions and each dependency's LICENSE
|
|
25
|
+
and NOTICE files for its terms; npm ls --all lists the installed dependencies.
|
|
26
|
+
|
|
22
27
|
--------------------------------------------------------------------------------
|
|
23
28
|
|
|
24
29
|
PRIOR LICENSE
|
package/README.md
CHANGED
|
@@ -4,21 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://github.com/softspark/jira-mcp/actions/workflows/ci.yml)
|
|
6
6
|
[](https://www.npmjs.com/package/@softspark/jira-mcp)
|
|
7
|
-
[](CHANGELOG.md)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
## What's New in v1.
|
|
12
|
+
## What's New in v1.12.0
|
|
13
13
|
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
|
|
19
|
-
See [CHANGELOG.md](CHANGELOG.md) for full details.
|
|
20
|
-
|
|
21
|
-
---
|
|
14
|
+
- Nothing changes for this package: same name, same `jira-mcp` binary, same `~/.softspark/jira-mcp/` config path, same 19 tools.
|
|
15
|
+
- The repository is now a workspace. Confluence ships separately as [`@softspark/confluence-mcp`](../confluence-mcp), released together with this package under one version.
|
|
16
|
+
- Jira and Confluence share one HTTP layer for auth, retry and backoff; each keeps its own error vocabulary.
|
|
17
|
+
- Fixed: `jira-mcp config add-project` and `remove-project` rebuilt `config.json` from a fixed field list, discarding `default_language` and, once Confluence spaces existed, the whole `spaces` section.
|
|
22
18
|
|
|
23
19
|
## Table of Contents
|
|
24
20
|
|
|
@@ -72,6 +68,7 @@ All configuration lives in `~/.softspark/jira-mcp/` (created by `jira-mcp config
|
|
|
72
68
|
|---------|-------------|
|
|
73
69
|
| `jira-mcp` | Start MCP server (default) |
|
|
74
70
|
| `jira-mcp serve` | Start MCP server (explicit) |
|
|
71
|
+
| `jira-mcp audit [--json\|--sarif]` | Audit local permissions and shipped hook ownership without contacting Jira |
|
|
75
72
|
| `jira-mcp create <path>` | Create tasks from config file (dry-run by default) |
|
|
76
73
|
| `jira-mcp create-monthly` | Create monthly admin tasks from built-in templates |
|
|
77
74
|
| `jira-mcp template add <type> <path>` | Install a template override from a local markdown file |
|
|
@@ -184,7 +181,7 @@ Or copy `rules/jira-mcp.md` to your ai-toolkit rules directory manually. The rul
|
|
|
184
181
|
- **Sync before read** -- cache may be stale
|
|
185
182
|
- **Status transitions** -- check valid transitions before changing status
|
|
186
183
|
- **Time format** -- `"2h 30m"`, never days
|
|
187
|
-
- **All 19 MCP tools** and **
|
|
184
|
+
- **All 19 MCP tools** and **21 CLI commands** reference
|
|
188
185
|
|
|
189
186
|
### AI Toolkit Hooks
|
|
190
187
|
|
|
@@ -253,17 +250,18 @@ src/
|
|
|
253
250
|
|
|
254
251
|
**Per-instance credentials** -- different API tokens per Jira instance URL. Single-credential format still works (backward compatible). See [Configuration](kb/reference/configuration.md).
|
|
255
252
|
|
|
256
|
-
**Supply chain protection** -- `ignore-scripts=true`, no axios, no dynamic requires. Self-contained
|
|
253
|
+
**Supply chain protection** -- `ignore-scripts=true`, no axios, no dynamic requires. Self-contained 548KB library bundle, 1 runtime dep (commander).
|
|
257
254
|
|
|
258
|
-
**Typed error hierarchy** --
|
|
255
|
+
**Typed error hierarchy** -- 26 error classes with machine-readable codes. Every tool returns structured `{ success, error, code }` responses. No stack traces leak to MCP clients.
|
|
259
256
|
|
|
260
|
-
**Strict TypeScript** -- `strict: true`, no `any`, `readonly` interfaces, Zod validation at all boundaries,
|
|
257
|
+
**Strict TypeScript** -- `strict: true`, no `any`, `readonly` interfaces, Zod validation at all boundaries, 910 tests across 77 test files.
|
|
261
258
|
|
|
262
259
|
## Documentation
|
|
263
260
|
|
|
264
261
|
| Document | Description |
|
|
265
262
|
|----------|-------------|
|
|
266
263
|
| [Architecture](kb/reference/architecture.md) | System design and module overview |
|
|
264
|
+
| [Local audit](kb/reference/audit.md) | JSON/SARIF formats, filesystem checks and hook permissions |
|
|
267
265
|
| [API Reference](kb/reference/api.md) | All 19 MCP tools with schemas |
|
|
268
266
|
| [Configuration](kb/reference/configuration.md) | Config files, env vars, multi-instance |
|
|
269
267
|
| [ADF Format](kb/reference/adf.md) | Atlassian Document Format conversion |
|