@apicircle/mcp-server 1.0.4 → 1.0.6
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 +7 -2
- package/dist/bin/mcp-server.cjs +2597 -2284
- package/dist/bin/mcp-server.cjs.map +1 -1
- package/dist/index.cjs +80 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +80 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -61,14 +61,19 @@ apicircle-mcp
|
|
|
61
61
|
# Single-workspace mode — point at a folder with a workspace.synced.json
|
|
62
62
|
# (CI, a git-cloned workspace repo, etc.)
|
|
63
63
|
apicircle-mcp --workspace /path/to/checkout-repo
|
|
64
|
+
|
|
65
|
+
# Diagnostics — handled in-process, no MCP handshake involved
|
|
66
|
+
apicircle-mcp --version # prints the package version
|
|
67
|
+
apicircle-mcp --help # prints the usage block
|
|
64
68
|
```
|
|
65
69
|
|
|
66
70
|
The server speaks JSON-RPC on stdin/stdout (logs to stderr). Plug it into
|
|
67
71
|
your AI client per the
|
|
68
72
|
[Connect your AI client](https://github.com/apicircle/studio/blob/main/docs/connect-your-ai-client.md)
|
|
69
73
|
guide, or copy/paste the snippet generated by the desktop app's
|
|
70
|
-
**MCP
|
|
71
|
-
|
|
74
|
+
**MCP > Connection** panel. It is the single setup-and-status surface: the
|
|
75
|
+
workspace-mirror status and Refresh action stay above the "Set up your AI
|
|
76
|
+
client" block.
|
|
72
77
|
|
|
73
78
|
## Wiring it into an AI client
|
|
74
79
|
|