@softspark/jira-mcp 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/CHANGELOG.md +35 -1
- package/README.md +11 -12
- package/dist/cli.js +75 -61
- package/dist/index.d.ts +5 -2
- package/dist/index.js +71 -57
- package/package.json +10 -9
package/dist/index.d.ts
CHANGED
|
@@ -4,8 +4,11 @@ import { Server } from '@modelcontextprotocol/sdk/server/index.js';
|
|
|
4
4
|
* MCP server for Jira integration.
|
|
5
5
|
*
|
|
6
6
|
* Loads configuration, creates the instance pool, cache manager,
|
|
7
|
-
* template registry, and task syncer, then registers
|
|
8
|
-
*
|
|
7
|
+
* template registry, and task syncer, then registers MCP tool
|
|
8
|
+
* handlers with the SDK's low-level handler API.
|
|
9
|
+
*
|
|
10
|
+
* Tool definitions live in {@link ./tools/definitions.ts}.
|
|
11
|
+
* Argument helpers live in {@link ./tools/args.ts}.
|
|
9
12
|
*
|
|
10
13
|
* @module
|
|
11
14
|
*/
|