mcp server for VS Code
io.github.akka-finance/mcp-server
MCP server for AKKA Finance DEX aggregator — swap quotes, routes, and execution
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "akka-api-base",
"description": "AKKA_API_BASE",
"password": true
},
{
"type": "promptString",
"id": "akka-api-key",
"description": "AKKA_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@akka-finance/mcp-server"
],
"env": {
"AKKA_API_BASE": "${input:akka-api-base}",
"AKKA_API_KEY": "${input:akka-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs