@nwire/mcp 0.10.1 → 0.11.1
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ await endpoint("tasks", { port: 3000 })
|
|
|
38
38
|
.run();
|
|
39
39
|
|
|
40
40
|
// In-process introspection — no stdio server required:
|
|
41
|
-
mcp.list();
|
|
41
|
+
mcp.list(); // [{ name, description, inputSchema }]
|
|
42
42
|
await mcp.call("create-task", { title: "x" });
|
|
43
43
|
```
|
|
44
44
|
|
package/dist/index.d.ts
CHANGED
|
@@ -79,4 +79,4 @@ export type { JsonRpcRequest, JsonRpcResponse, JsonRpcNotification };
|
|
|
79
79
|
export { inspectTools, findInspectTool, resetInspectDiscoveryCache } from "./inspect.js";
|
|
80
80
|
export type { InspectToolDef } from "./inspect.js";
|
|
81
81
|
export { writeTools, findWriteTool } from "./write-tools.js";
|
|
82
|
-
export { mcpAdapter, type McpAdapter, type McpAdapterConfig, type McpToolDescriptor } from "./mcp-adapter.js";
|
|
82
|
+
export { mcpAdapter, type McpAdapter, type McpAdapterConfig, type McpToolDescriptor, } from "./mcp-adapter.js";
|
package/dist/index.js
CHANGED
|
@@ -273,4 +273,4 @@ function readLines(stream, onLine) {
|
|
|
273
273
|
export { inspectTools, findInspectTool, resetInspectDiscoveryCache } from "./inspect.js";
|
|
274
274
|
export { writeTools, findWriteTool } from "./write-tools.js";
|
|
275
275
|
// 0.10 adopter shape — consumed by endpoint().use(mcpAdapter()).mount(app).
|
|
276
|
-
export { mcpAdapter } from "./mcp-adapter.js";
|
|
276
|
+
export { mcpAdapter, } from "./mcp-adapter.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nwire/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Nwire MCP (Model Context Protocol) server — exposes the kernel's CommandRouter as MCP tools over stdio. AI clients (Claude, Cursor, …) drive nwire commands the same way the CLI and Studio do.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@nwire/container": "0.
|
|
26
|
-
"@nwire/
|
|
27
|
-
"@nwire/logger": "0.
|
|
28
|
-
"@nwire/
|
|
29
|
-
"@nwire/
|
|
25
|
+
"@nwire/container": "0.11.1",
|
|
26
|
+
"@nwire/endpoint": "0.11.1",
|
|
27
|
+
"@nwire/logger": "0.11.1",
|
|
28
|
+
"@nwire/wires": "0.11.1",
|
|
29
|
+
"@nwire/supervisor": "0.11.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.19.9",
|