@imqueue/mcp 2.0.2 → 2.0.4
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 +2 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @imqueue/mcp
|
|
2
2
|
|
|
3
|
+
[](https://smithery.ai/servers/mikhus/imqueue)
|
|
4
|
+
|
|
3
5
|
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
6
|
|
|
5
7
|
📖 **Full documentation: [imqueue.org/mcp](https://imqueue.org/mcp/)** — per-client setup, complete tools reference, agent workflows and the safety model.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imqueue/mcp",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
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": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"smoke": "node scripts/smoke.mjs",
|
|
42
42
|
"version": "node scripts/sync-version.mjs && git add server.json",
|
|
43
43
|
"prepublishOnly": "npm run build",
|
|
44
|
-
"postpublish": "node scripts/publish-registry.mjs",
|
|
44
|
+
"postpublish": "node scripts/publish-registry.mjs && node scripts/publish-github-release.mjs",
|
|
45
45
|
"typecheck:worker": "tsc --noEmit -p worker/tsconfig.json",
|
|
46
46
|
"dev:worker": "wrangler dev",
|
|
47
47
|
"deploy:worker": "wrangler deploy"
|
|
@@ -55,5 +55,8 @@
|
|
|
55
55
|
"tsx": "^4.19.0",
|
|
56
56
|
"typescript": "^5.6.0",
|
|
57
57
|
"wrangler": "^4.0.0"
|
|
58
|
+
},
|
|
59
|
+
"overrides": {
|
|
60
|
+
"@hono/node-server": "^2.0.5"
|
|
58
61
|
}
|
|
59
62
|
}
|