Skip to content
VS Code

orcpin for VS Code

io.github.npraught/orcpin

Paid x402 facts for AI agents: signed statements, door reports, endpoint checks, chain reads

client:VS Code transport:stdio runtime:npm

Install orcpin in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "orcpin-private-key",
      "description": "ORCPIN_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "orcpin-toolsets",
      "description": "ORCPIN_TOOLSETS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x402-network",
      "description": "X402_NETWORK",
      "password": true
    }
  ],
  "servers": {
    "orcpin": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "orcpin-mcp"
      ],
      "env": {
        "ORCPIN_PRIVATE_KEY": "${input:orcpin-private-key}",
        "ORCPIN_TOOLSETS": "${input:orcpin-toolsets}",
        "X402_NETWORK": "${input:x402-network}"
      }
    }
  }
}

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

orcpin in other clients