@apicircle/mcp-server 1.0.6 → 1.0.8
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 +14 -13
- package/dist/bin/mcp-server.cjs +528 -299
- package/dist/bin/mcp-server.cjs.map +1 -1
- package/dist/index.cjs +513 -291
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -6
- package/dist/index.d.ts +20 -6
- package/dist/index.js +515 -287
- package/dist/index.js.map +1 -1
- package/package.json +28 -4
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>74-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-74-blueviolet" alt="74 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" />
|
|
@@ -140,22 +140,23 @@ 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 (74 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).
|
|
147
147
|
Highlights by category:
|
|
148
148
|
|
|
149
|
-
| Category | What the AI can do
|
|
150
|
-
| --------------------------- |
|
|
151
|
-
| **Workspaces** | `workspace.list`, `workspace.read`, `workspace.write` (bulk + scoped by `workspaceId`)
|
|
152
|
-
| **Entity CRUD** | Requests, folders, environments, plans, assertions — full read / write surface
|
|
153
|
-
| **
|
|
154
|
-
| **
|
|
155
|
-
| **
|
|
156
|
-
| **
|
|
157
|
-
| **
|
|
158
|
-
| **
|
|
149
|
+
| Category | What the AI can do |
|
|
150
|
+
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
151
|
+
| **Workspaces** | `workspace.list`, `workspace.read`, `workspace.write` (bulk + scoped by `workspaceId`) |
|
|
152
|
+
| **Entity CRUD** | Requests, folders, environments, plans, assertions — full read / write surface |
|
|
153
|
+
| **Folder exchange** | `folder.export_json`, `folder.import_json` — portable `apicircle.folder/v1` envelope with embedded JSON Schema + GraphQL dependencies; credentials redacted by default |
|
|
154
|
+
| **Imports** | `import.curl`, `import.openapi`, `import.postman`, `import.insomnia`, `import.har` |
|
|
155
|
+
| **Code generation** | `generate.code` for cURL, fetch, axios, Python requests, Go, Rust |
|
|
156
|
+
| **Codebase analysis** | `codebase.extract_collection` — Express, FastAPI, NestJS, Spring |
|
|
157
|
+
| **Prompt-driven authoring** | LLM-shaped JSON entry points for request / folder / environment / assertion / plan / mock creation |
|
|
158
|
+
| **Mock servers** | `mock.create_from_openapi`, `mock.start`, `mock.stop`, `mock.delete`, … |
|
|
159
|
+
| **History** | `history.list_runs`, `history.get_run`, `history.delete_run`, `history.purge_by_age` |
|
|
159
160
|
|
|
160
161
|
## Embed it in your own product
|
|
161
162
|
|