To integrate your MCP server with VS Code Copilot, you'll need to configure your workspace mcp settings (.vscode/mcp.json
):
{
"servers": {
"my-project-tools": {
"type": "stdio",
"command": "node",
"args": ["./tools/mcp/dist/index.js"] // Path to you MCP javascript build
}
},
"inputs": []
}