@imqueue/mcp 1.1.1 → 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/SPEC.md +1 -1
- package/package.json +2 -2
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/SPEC.md
CHANGED
|
@@ -106,7 +106,7 @@ Publish `@imqueue/mcp` to npm, then list it everywhere agents discover servers:
|
|
|
106
106
|
|
|
107
107
|
| Channel | Artifact / action |
|
|
108
108
|
|---|---|
|
|
109
|
-
| **Official MCP registry** | `server.json` (this repo) → publish via `mcp-publisher`. Namespace `
|
|
109
|
+
| **Official MCP registry** | `server.json` (this repo) → publish via `mcp-publisher`. Namespace `org.imqueue/mcp` (DNS auth on imqueue.org). |
|
|
110
110
|
| **Smithery** | `smithery.yaml` (this repo) → connect the GitHub repo. |
|
|
111
111
|
| **mcp.so / PulseMCP / Glama** | Auto-index from npm + GitHub; submit/claim the listing. |
|
|
112
112
|
| **Cursor / VS Code directories** | Add the `mcpServers` JSON snippet to their community lists. |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imqueue/mcp",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"mcpName": "
|
|
3
|
+
"version": "1.1.3",
|
|
4
|
+
"mcpName": "org.imqueue/mcp",
|
|
5
5
|
"description": "Model Context Protocol server for @imqueue — lets AI coding agents search the docs and scaffold typed services & clients.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"mcp",
|