mcp for VS Code
io.github.prismnetwork-tech/mcp
Rent real NVIDIA GPUs from your agent. Browse with no wallet; pay per second onchain.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "prism-agent-key",
"description": "PRISM_AGENT_KEY",
"password": true
},
{
"type": "promptString",
"id": "prism-escrow",
"description": "PRISM_ESCROW",
"password": true
},
{
"type": "promptString",
"id": "prism-daily-budget-usdg",
"description": "PRISM_DAILY_BUDGET_USDG",
"password": true
},
{
"type": "promptString",
"id": "prism-max-usdg",
"description": "PRISM_MAX_USDG",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@prismnetwork/mcp"
],
"env": {
"PRISM_AGENT_KEY": "${input:prism-agent-key}",
"PRISM_ESCROW": "${input:prism-escrow}",
"PRISM_DAILY_BUDGET_USDG": "${input:prism-daily-budget-usdg}",
"PRISM_MAX_USDG": "${input:prism-max-usdg}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs