Skip to content
VS Code

SpherePay for VS Code

io.github.danchev/spherepay

Manage SpherePay customers, bank accounts, wallets, and transfers from Claude.

client:VS Code transport:stdio runtime:pypi

Install SpherePay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "spherepay-api-key",
      "description": "SPHEREPAY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spherepay-base-url",
      "description": "SPHEREPAY_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spherepay-timeout",
      "description": "SPHEREPAY_TIMEOUT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spherepay-max-retries",
      "description": "SPHEREPAY_MAX_RETRIES",
      "password": true
    }
  ],
  "servers": {
    "spherepay": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "spherepay-mcp"
      ],
      "env": {
        "SPHEREPAY_API_KEY": "${input:spherepay-api-key}",
        "SPHEREPAY_BASE_URL": "${input:spherepay-base-url}",
        "SPHEREPAY_TIMEOUT": "${input:spherepay-timeout}",
        "SPHEREPAY_MAX_RETRIES": "${input:spherepay-max-retries}"
      }
    }
  }
}

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

SpherePay in other clients