@foldkit/devtools-mcp 0.11.0 → 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 CHANGED
@@ -41,9 +41,10 @@ Then make two edits to your project.
41
41
  In `vite.config.ts`, pass `devToolsMcpPort` to the Foldkit plugin so it opens the relay:
42
42
 
43
43
  ```typescript
44
- import { foldkit } from '@foldkit/vite-plugin'
45
44
  import { defineConfig } from 'vite'
46
45
 
46
+ import { foldkit } from '@foldkit/vite-plugin'
47
+
47
48
  export default defineConfig({
48
49
  plugins: [foldkit({ devToolsMcpPort: 9988 })],
49
50
  })
package/dist/server.js CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
+ import { Console, Effect, HashMap, Option } from 'effect';
2
3
  import { Server } from '@modelcontextprotocol/sdk/server/index.js';
3
4
  import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
4
5
  import { CallToolRequestSchema, ListToolsRequestSchema, } from '@modelcontextprotocol/sdk/types.js';
5
- import { Console, Effect, HashMap, Option } from 'effect';
6
6
  import { runInit } from './install.js';
7
7
  import { buildTools } from './tools.js';
8
8
  import { connectWebSocketClient } from './webSocketClient.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foldkit/devtools-mcp",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
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.78",
30
30
  "rimraf": "^6.1.3",
31
31
  "typescript": "^6.0.3",
32
- "foldkit": "0.111.0"
32
+ "foldkit": "0.112.0"
33
33
  },
34
34
  "files": [
35
35
  "dist"