copilot mcp for VS Code
io.github.apex-foundation/copilot-mcp
Web3 founder diligence: code audit, jurisdiction, fund matching, portfolio, scoring.
client:VS Code
transport:stdio
runtime:npm
Install copilot mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apex-copilot-pat",
"description": "APEX_COPILOT_PAT",
"password": true
},
{
"type": "promptString",
"id": "apex-copilot-api-base",
"description": "APEX_COPILOT_API_BASE",
"password": true
}
],
"servers": {
"copilot-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@apexfdn/copilot-mcp"
],
"env": {
"APEX_COPILOT_PAT": "${input:apex-copilot-pat}",
"APEX_COPILOT_API_BASE": "${input:apex-copilot-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs