@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 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>71-tool catalog</strong> — so Claude, ChatGPT, Cursor, Copilot, and every other MCP client can read, author, mock, and run requests for you.
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-71-blueviolet" alt="71 MCP tools" />
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 (71 tools)
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
- | **Imports** | `import.curl`, `import.openapi`, `import.postman`, `import.insomnia`, `import.har` |
154
- | **Code generation** | `generate.code` for cURL, fetch, axios, Python requests, Go, Rust |
155
- | **Codebase analysis** | `codebase.extract_collection` Express, FastAPI, NestJS, Spring |
156
- | **Prompt-driven authoring** | LLM-shaped JSON entry points for request / folder / environment / assertion / plan / mock creation |
157
- | **Mock servers** | `mock.create_from_openapi`, `mock.start`, `mock.stop`, `mock.delete`, |
158
- | **History** | `history.list_runs`, `history.get_run`, `history.delete_run`, `history.purge_by_age` |
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