@foldkit/devtools-mcp 0.6.1 → 0.7.0
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/dist/tools.js +2 -2
- package/package.json +4 -4
package/dist/tools.js
CHANGED
|
@@ -62,8 +62,8 @@ const GetRuntimeStateInput = S.Struct({
|
|
|
62
62
|
});
|
|
63
63
|
const DispatchMessageInput = S.Struct({
|
|
64
64
|
runtime_id: RuntimeIdField,
|
|
65
|
-
message: S.Unknown.annotate({
|
|
66
|
-
description: "A Foldkit Message object to dispatch into the runtime. Must match the runtime's Message Schema
|
|
65
|
+
message: S.Record(S.String, S.Unknown).annotate({
|
|
66
|
+
description: "A Foldkit Message object to dispatch into the runtime. Must match the runtime's Message Schema. Read the application's source to see the exact shape. At minimum it has a `_tag` field naming the variant. The runtime decodes the payload and returns a clean error if it doesn't match.",
|
|
67
67
|
}),
|
|
68
68
|
});
|
|
69
69
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foldkit/devtools-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "MCP server exposing Foldkit DevTools to AI agents (Claude Code, Cursor, etc.)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/server.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"effect": "4.0.0-beta.
|
|
19
|
+
"effect": "4.0.0-beta.66",
|
|
20
20
|
"foldkit": "^0"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^25.6.0",
|
|
28
28
|
"@types/ws": "^8.18.1",
|
|
29
|
-
"effect": "4.0.0-beta.
|
|
29
|
+
"effect": "4.0.0-beta.66",
|
|
30
30
|
"rimraf": "^6.1.3",
|
|
31
31
|
"typescript": "^6.0.3",
|
|
32
|
-
"foldkit": "0.
|
|
32
|
+
"foldkit": "0.99.0"
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
|
35
35
|
"dist"
|