@apicircle/mcp-server 1.0.5 → 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 +4 -0
- package/dist/bin/mcp-server.cjs +1 -1
- package/dist/bin/mcp-server.cjs.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -61,6 +61,10 @@ 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
|
package/dist/bin/mcp-server.cjs
CHANGED
|
@@ -36,7 +36,7 @@ var init_package = __esm({
|
|
|
36
36
|
"package.json"() {
|
|
37
37
|
package_default = {
|
|
38
38
|
name: "@apicircle/mcp-server",
|
|
39
|
-
version: "1.0.
|
|
39
|
+
version: "1.0.6",
|
|
40
40
|
private: false,
|
|
41
41
|
type: "module",
|
|
42
42
|
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.",
|