mcp for VS Code
io.github.x402-video/mcp
Pay-per-call AI video generation over x402 (USDC on Base). No accounts, no API keys.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "buyer-private-key",
"description": "BUYER_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "max-usd-per-call",
"description": "MAX_USD_PER_CALL",
"password": true
},
{
"type": "promptString",
"id": "gateway-url",
"description": "GATEWAY_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"x402-video-mcp"
],
"env": {
"BUYER_PRIVATE_KEY": "${input:buyer-private-key}",
"MAX_USD_PER_CALL": "${input:max-usd-per-call}",
"GATEWAY_URL": "${input:gateway-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs