Skip to content
VS Code

mcp for VS Code

net.payflowagent/mcp

Free & pay-per-call (x402/USDC) risk & momentum scores for nad.fun tokens on Monad.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "x402-buyer-private-key",
      "description": "X402_BUYER_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "payflowagent-api-base",
      "description": "PAYFLOWAGENT_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x402-buyer-rpc",
      "description": "X402_BUYER_RPC",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "payflowagent-mcp"
      ],
      "env": {
        "X402_BUYER_PRIVATE_KEY": "${input:x402-buyer-private-key}",
        "PAYFLOWAGENT_API_BASE": "${input:payflowagent-api-base}",
        "X402_BUYER_RPC": "${input:x402-buyer-rpc}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp in other clients