@gudlab/gud-api-mcp 0.1.2 → 0.1.3
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/dist/server.js +1 -1
- package/package.json +20 -4
package/dist/server.js
CHANGED
|
@@ -759,7 +759,7 @@ function ok(obj) {
|
|
|
759
759
|
function fail(message) {
|
|
760
760
|
return { content: [{ type: "text", text: JSON.stringify({ error: message }, null, 2) }], isError: true };
|
|
761
761
|
}
|
|
762
|
-
var VERSION = true ? "0.1.
|
|
762
|
+
var VERSION = true ? "0.1.3" : "0.0.0-dev";
|
|
763
763
|
var server = new McpServer({ name: "gud-api", version: VERSION });
|
|
764
764
|
server.tool(
|
|
765
765
|
"list_collections",
|
package/package.json
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gudlab/gud-api-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"mcpName": "io.github.gudlab/gud-api-mcp",
|
|
5
5
|
"description": "Model Context Protocol server for Gud API — let AI coding agents (Claude Code, Cursor, Windsurf, Codex, Cline…) create, run, and save API requests and collections your team can open in any VS Code-compatible editor.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE",
|
|
8
8
|
"publisher": "gudlab",
|
|
9
|
-
"keywords": [
|
|
9
|
+
"keywords": [
|
|
10
|
+
"mcp",
|
|
11
|
+
"model-context-protocol",
|
|
12
|
+
"api",
|
|
13
|
+
"rest",
|
|
14
|
+
"graphql",
|
|
15
|
+
"api-client",
|
|
16
|
+
"gud-api",
|
|
17
|
+
"ai-agent",
|
|
18
|
+
"claude-code",
|
|
19
|
+
"cursor",
|
|
20
|
+
"windsurf",
|
|
21
|
+
"codex",
|
|
22
|
+
"cline"
|
|
23
|
+
],
|
|
10
24
|
"repository": {
|
|
11
25
|
"type": "git",
|
|
12
26
|
"url": "https://github.com/gudlab/gud-api"
|
|
@@ -14,7 +28,9 @@
|
|
|
14
28
|
"bin": {
|
|
15
29
|
"gud-api-mcp": "./dist/server.js"
|
|
16
30
|
},
|
|
17
|
-
"files": [
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
18
34
|
"engines": {
|
|
19
35
|
"node": ">=18"
|
|
20
36
|
},
|
|
@@ -26,7 +42,7 @@
|
|
|
26
42
|
"start": "node dist/server.js"
|
|
27
43
|
},
|
|
28
44
|
"dependencies": {
|
|
29
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
30
46
|
"zod": "^3.23.0"
|
|
31
47
|
},
|
|
32
48
|
"devDependencies": {
|