@gitscrum-studio/mcp-server 1.0.0 → 1.0.1
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/README.md +1 -0
- package/dist/index.js +2 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
13
|
+
<a href="https://www.npmjs.com/package/@gitscrum-studio/mcp-server"><img src="https://img.shields.io/npm/v/@gitscrum-studio/mcp-server?style=flat-square&color=000" alt="npm version"></a>
|
|
13
14
|
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/license-MIT-000?style=flat-square" alt="MIT License"></a>
|
|
14
15
|
<a href="https://github.com/gitscrum-core/mcp-server/actions"><img src="https://img.shields.io/badge/tests-378_passing-000?style=flat-square" alt="Tests"></a>
|
|
15
16
|
</p>
|
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ const serverInstructions = `GitScrum project management. Stateless MCP - always
|
|
|
31
31
|
/** MCP Server instance with capabilities declaration */
|
|
32
32
|
const server = new Server({
|
|
33
33
|
name: "gitscrum",
|
|
34
|
-
version: "1.0.
|
|
34
|
+
version: "1.0.1",
|
|
35
35
|
}, {
|
|
36
36
|
capabilities: {
|
|
37
37
|
tools: {},
|
|
@@ -137,7 +137,7 @@ async function main() {
|
|
|
137
137
|
await server.connect(transport);
|
|
138
138
|
// Log startup info to stderr (stdout is reserved for MCP protocol)
|
|
139
139
|
console.error("╔═══════════════════════════════════════════════╗");
|
|
140
|
-
console.error("║ GitScrum Studio MCP Server v1.0.
|
|
140
|
+
console.error("║ GitScrum Studio MCP Server v1.0.1 ║");
|
|
141
141
|
console.error("╚═══════════════════════════════════════════════╝");
|
|
142
142
|
console.error("");
|
|
143
143
|
console.error(` API: ${process.env.GITSCRUM_API_URL || "https://services.gitscrum.com"}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitscrum-studio/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"mcpName": "io.github.gitscrum-core/mcp-server",
|
|
4
5
|
"description": "Model Context Protocol server for GitScrum - Enable AI assistants to manage tasks, track time, run sprints, and handle client relationships through natural language",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
|
@@ -86,4 +87,4 @@
|
|
|
86
87
|
"typescript": "^5.3.0",
|
|
87
88
|
"vitest": "^4.0.18"
|
|
88
89
|
}
|
|
89
|
-
}
|
|
90
|
+
}
|