diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..54ebd676 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "configurations": [ + { + "name": "Wrangler", + "type": "node", + "request": "attach", + "port": 9229, + "cwd": "/", + "resolveSourceMapLocations": null, + "attachExistingChildren": false, + "autoAttachChildProcesses": false, + "sourceMaps": true // works with or without this line + } + ] +} diff --git a/apps/workers-bindings/src/index.ts b/apps/workers-bindings/src/index.ts index 781c239a..fe58b9f1 100644 --- a/apps/workers-bindings/src/index.ts +++ b/apps/workers-bindings/src/index.ts @@ -31,10 +31,6 @@ export class WorkersBindingsMCP extends McpAgent { version: '1.0.0', }) - initialState: State = { - activeAccountId: null, - } - async init() { registerAccountTools(this)