@softspark/jira-mcp 1.0.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 +73 -0
- package/LICENSE +21 -0
- package/README.md +261 -0
- package/dist/cli.js +176 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +149 -0
- package/package.json +81 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* MCP server for Jira integration.
|
|
5
|
+
*
|
|
6
|
+
* Loads configuration, creates the instance pool, cache manager,
|
|
7
|
+
* template registry, and task syncer, then registers all 15 MCP
|
|
8
|
+
* tools with the SDK's low-level handler API.
|
|
9
|
+
*
|
|
10
|
+
* @module
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
declare function createServer(): Server;
|
|
14
|
+
/**
|
|
15
|
+
* Boot the MCP server: load config, create all dependencies, register
|
|
16
|
+
* tool handlers, and connect via stdio transport.
|
|
17
|
+
*/
|
|
18
|
+
declare function startServer(): Promise<void>;
|
|
19
|
+
|
|
20
|
+
export { createServer, startServer };
|