@apicircle/mcp-server 1.0.2 → 1.0.4
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 +2 -1
- package/package.json +26 -33
package/README.md
CHANGED
|
@@ -67,7 +67,8 @@ The server speaks JSON-RPC on stdin/stdout (logs to stderr). Plug it into
|
|
|
67
67
|
your AI client per the
|
|
68
68
|
[Connect your AI client](https://github.com/apicircle/studio/blob/main/docs/connect-your-ai-client.md)
|
|
69
69
|
guide, or copy/paste the snippet generated by the desktop app's
|
|
70
|
-
**MCP →
|
|
70
|
+
**MCP → Connection** panel (the "Set up your AI client" block, which sits
|
|
71
|
+
below the workspace-mirror status).
|
|
71
72
|
|
|
72
73
|
## Wiring it into an AI client
|
|
73
74
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apicircle/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Model Context Protocol server exposing API Circle Studio's workspace as a tool catalog. Used by Claude Desktop, ChatGPT, Cursor, GitHub Copilot, and any other MCP-compatible AI client.",
|
|
@@ -15,51 +15,44 @@
|
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=20"
|
|
17
17
|
},
|
|
18
|
-
"main": "./
|
|
19
|
-
"types": "./
|
|
18
|
+
"main": "./dist/index.cjs",
|
|
19
|
+
"types": "./dist/index.d.cts",
|
|
20
20
|
"bin": {
|
|
21
21
|
"apicircle-mcp": "./dist/bin/mcp-server.cjs"
|
|
22
22
|
},
|
|
23
23
|
"exports": {
|
|
24
|
-
".":
|
|
24
|
+
".": {
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"default": "./dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"require": {
|
|
30
|
+
"types": "./dist/index.d.cts",
|
|
31
|
+
"default": "./dist/index.cjs"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
25
34
|
},
|
|
26
35
|
"files": [
|
|
27
36
|
"dist"
|
|
28
37
|
],
|
|
29
|
-
"publishConfig": {
|
|
30
|
-
"main": "./dist/index.cjs",
|
|
31
|
-
"module": "./dist/index.js",
|
|
32
|
-
"types": "./dist/index.d.cts",
|
|
33
|
-
"exports": {
|
|
34
|
-
".": {
|
|
35
|
-
"import": {
|
|
36
|
-
"types": "./dist/index.d.ts",
|
|
37
|
-
"default": "./dist/index.js"
|
|
38
|
-
},
|
|
39
|
-
"require": {
|
|
40
|
-
"types": "./dist/index.d.cts",
|
|
41
|
-
"default": "./dist/index.cjs"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"build": "tsup",
|
|
48
|
-
"check": "tsc --noEmit",
|
|
49
|
-
"test": "vitest run",
|
|
50
|
-
"clean": "rm -rf dist node_modules"
|
|
51
|
-
},
|
|
52
38
|
"dependencies": {
|
|
53
|
-
"@apicircle/core": "workspace:*",
|
|
54
|
-
"@apicircle/mock-server-core": "workspace:*",
|
|
55
|
-
"@apicircle/shared": "workspace:*",
|
|
56
39
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
57
|
-
"zod": "^3.23.0"
|
|
40
|
+
"zod": "^3.23.0",
|
|
41
|
+
"@apicircle/core": "1.0.4",
|
|
42
|
+
"@apicircle/shared": "1.0.4",
|
|
43
|
+
"@apicircle/mock-server-core": "1.0.4"
|
|
58
44
|
},
|
|
59
45
|
"devDependencies": {
|
|
60
46
|
"@types/node": "^20.0.0",
|
|
61
47
|
"tsup": "^8.3.0",
|
|
62
48
|
"typescript": "^5.4.0",
|
|
63
49
|
"vitest": "^2.0.0"
|
|
64
|
-
}
|
|
65
|
-
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsup",
|
|
53
|
+
"check": "tsc --noEmit",
|
|
54
|
+
"test": "vitest run",
|
|
55
|
+
"clean": "rm -rf dist node_modules"
|
|
56
|
+
},
|
|
57
|
+
"module": "./dist/index.js"
|
|
58
|
+
}
|