@apicircle/mcp-server 1.0.8 → 1.1.0
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 +9 -9
- package/dist/bin/mcp-server.cjs +2253 -253
- package/dist/bin/mcp-server.cjs.map +1 -1
- package/dist/chunk-N7LZVN3U.js +165 -0
- package/dist/chunk-N7LZVN3U.js.map +1 -0
- package/dist/index.cjs +2177 -247
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +65 -1
- package/dist/index.d.ts +65 -1
- package/dist/index.js +2005 -233
- package/dist/index.js.map +1 -1
- package/dist/prompts/mcpPrompts.cjs +190 -0
- package/dist/prompts/mcpPrompts.cjs.map +1 -0
- package/dist/prompts/mcpPrompts.d.cts +19 -0
- package/dist/prompts/mcpPrompts.d.ts +19 -0
- package/dist/prompts/mcpPrompts.js +9 -0
- package/dist/prompts/mcpPrompts.js.map +1 -0
- package/package.json +17 -5
package/README.md
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
8
|
<strong>Give your AI assistant a real API client.</strong><br />
|
|
9
|
-
A Model Context Protocol server that exposes the API Circle Studio workspace as a <strong>
|
|
9
|
+
A Model Context Protocol server that exposes the API Circle Studio workspace as a <strong>94-tool catalog</strong> — so Claude, ChatGPT, Cursor, Copilot, and every other MCP client can read, author, mock, and run requests for you.
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
13
13
|
<a href="https://www.npmjs.com/package/@apicircle/mcp-server"><img src="https://img.shields.io/npm/v/@apicircle/mcp-server?color=cb3837&logo=npm" alt="npm version" /></a>
|
|
14
|
-
<img src="https://img.shields.io/badge/MCP%20tools-
|
|
14
|
+
<img src="https://img.shields.io/badge/MCP%20tools-94-blueviolet" alt="94 MCP tools" />
|
|
15
15
|
<img src="https://img.shields.io/badge/transport-stdio-blue" alt="stdio transport" />
|
|
16
16
|
<img src="https://img.shields.io/badge/multi--workspace-yes-success" alt="Multi-workspace" />
|
|
17
17
|
<img src="https://img.shields.io/badge/node-%E2%89%A5%2020-brightgreen" alt="Node ≥ 20" />
|
|
@@ -58,7 +58,7 @@ npm install @apicircle/mcp-server
|
|
|
58
58
|
# Multi-workspace mode (default) — exposes every workspace on this machine
|
|
59
59
|
apicircle-mcp
|
|
60
60
|
|
|
61
|
-
# Single-workspace mode — point at a folder with a workspace.
|
|
61
|
+
# Single-workspace mode — point at a folder with a workspace.json
|
|
62
62
|
# (CI, a git-cloned workspace repo, etc.)
|
|
63
63
|
apicircle-mcp --workspace /path/to/checkout-repo
|
|
64
64
|
|
|
@@ -107,11 +107,11 @@ Use `--workspace <path>` to scope to one workspace.
|
|
|
107
107
|
`apicircle-mcp` auto-detects the directory passed via `--workspace <dir>`
|
|
108
108
|
(or `APICIRCLE_WORKSPACE`):
|
|
109
109
|
|
|
110
|
-
| Contents of the directory
|
|
111
|
-
|
|
|
112
|
-
| `registry.json` present
|
|
113
|
-
| `workspace.
|
|
114
|
-
| No flag at all
|
|
110
|
+
| Contents of the directory | Mode |
|
|
111
|
+
| ------------------------- | ----------------------------------------------------------------------------------------------------------- |
|
|
112
|
+
| `registry.json` present | **Multi-workspace.** Loads the registry, binds the active workspace, exposes the rest via `workspace.list`. |
|
|
113
|
+
| `workspace.json` only | **Single-workspace.** Legacy boot for CI / git-cloned repos. |
|
|
114
|
+
| No flag at all | Falls back to the current working directory. |
|
|
115
115
|
|
|
116
116
|
In multi-workspace mode the assistant gets two extra surfaces:
|
|
117
117
|
|
|
@@ -140,7 +140,7 @@ In multi-workspace mode the assistant gets two extra surfaces:
|
|
|
140
140
|
Entity tools (`request.read`, `environment.create`, `mock.start`, etc.) all
|
|
141
141
|
default to the active workspace — multi-workspace scoping is opt-in per call.
|
|
142
142
|
|
|
143
|
-
## The tool catalog (
|
|
143
|
+
## The tool catalog (94 tools)
|
|
144
144
|
|
|
145
145
|
The full list lives at
|
|
146
146
|
[`docs/mcp-tools-reference.md`](https://github.com/apicircle/studio/blob/main/docs/mcp-tools-reference.md).
|