@foldkit/devtools-mcp 0.6.1 → 0.6.2

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.
Files changed (2) hide show
  1. package/dist/tools.js +2 -2
  2. package/package.json +2 -2
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 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.",
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.6.1",
3
+ "version": "0.6.2",
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",
@@ -29,7 +29,7 @@
29
29
  "effect": "4.0.0-beta.64",
30
30
  "rimraf": "^6.1.3",
31
31
  "typescript": "^6.0.3",
32
- "foldkit": "0.93.0"
32
+ "foldkit": "0.97.1"
33
33
  },
34
34
  "files": [
35
35
  "dist"