dew/.vscode/mcp.json
Chris Hendrickson 71d5fc0f75 Add MCP debug client and VS Code MCP config
- tools/mcp_client.dart: spawns the compiled dew binary, connects via
  stdioChannel, initializes the MCP handshake, lists all tools, and calls
  kanban_list_tickets — useful for verifying the server without a real client
- .vscode/mcp.json: proper VS Code MCP server config using ${workspaceFolder}
  to point at the compiled binary with 'mcp serve' args

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-23 16:13:53 -04:00

9 lines
162 B
JSON

{
"servers": {
"dew": {
"type": "stdio",
"command": "${workspaceFolder}/.project/toolchain/bin/dew",
"args": ["mcp", "serve"]
}
}
}