Relay for VS Code
io.github.relayprotocol/relay-mcp
Cross-chain bridge and swap quotes, fee estimation, and transaction tracking via Relay Protocol.
client:VS Code
transport:stdio
runtime:npm
Install Relay in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "relay-api-key",
"description": "RELAY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "relay-api-url",
"description": "RELAY_API_URL",
"password": true
}
],
"servers": {
"relay-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@relayprotocol/relay-mcp"
],
"env": {
"RELAY_API_KEY": "${input:relay-api-key}",
"RELAY_API_URL": "${input:relay-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs