- 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>
9 lines
162 B
JSON
9 lines
162 B
JSON
{
|
|
"servers": {
|
|
"dew": {
|
|
"type": "stdio",
|
|
"command": "${workspaceFolder}/.project/toolchain/bin/dew",
|
|
"args": ["mcp", "serve"]
|
|
}
|
|
}
|
|
}
|