@imqueue/mcp 1.1.2 → 1.1.3
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 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @imqueue/mcp
|
|
2
2
|
|
|
3
|
-
A [Model Context Protocol](https://modelcontextprotocol.io) server for **[@imqueue](https://imqueue.org)**. It lets AI coding agents (Claude Code, Cursor,
|
|
3
|
+
A [Model Context Protocol](https://modelcontextprotocol.io) server for **[@imqueue](https://imqueue.org)**. It lets AI coding agents (Claude Code, Cursor, VS Code, JetBrains, …) **search the @imqueue documentation**, **scaffold typed services & clients**, and **drive the `imq` CLI** — so they generate correct, idiomatic @imqueue code instead of guessing.
|
|
4
|
+
|
|
5
|
+
📖 **Full documentation: [imqueue.org/mcp](https://imqueue.org/mcp/)** — per-client setup, complete tools reference, agent workflows and the safety model.
|
|
4
6
|
|
|
5
7
|
## Tools
|
|
6
8
|
|
|
@@ -45,7 +47,7 @@ npx -y @imqueue/mcp
|
|
|
45
47
|
claude mcp add imqueue -- npx -y @imqueue/mcp
|
|
46
48
|
```
|
|
47
49
|
|
|
48
|
-
###
|
|
50
|
+
### Other clients (Cursor, Claude Desktop, JetBrains, Windsurf, Zed, …)
|
|
49
51
|
|
|
50
52
|
Add to your MCP config (`.cursor/mcp.json`, `claude_desktop_config.json`, …):
|
|
51
53
|
|
|
@@ -60,6 +62,8 @@ Add to your MCP config (`.cursor/mcp.json`, `claude_desktop_config.json`, …):
|
|
|
60
62
|
}
|
|
61
63
|
```
|
|
62
64
|
|
|
65
|
+
> **VS Code and Visual Studio** use a top-level `servers` key with `"type": "stdio"` instead of `mcpServers`. See **[imqueue.org/mcp/installation](https://imqueue.org/mcp/installation/)** for the exact config file path and snippet for every client.
|
|
66
|
+
|
|
63
67
|
## Develop
|
|
64
68
|
|
|
65
69
|
```bash
|
|
@@ -79,4 +83,4 @@ npm run smoke # JSON-RPC handshake + tools/list + tool calls
|
|
|
79
83
|
|
|
80
84
|
GPL-3.0. Commercial licensing & support for closed-source products: [imqueue.com](https://imqueue.com).
|
|
81
85
|
|
|
82
|
-
See [SPEC.md](./SPEC.md) for the
|
|
86
|
+
Full docs: **[imqueue.org/mcp](https://imqueue.org/mcp/)**. See [SPEC.md](./SPEC.md) for the design and registry-distribution plan.
|
package/package.json
CHANGED