Skip to content
VS Code

mcp asaas for VS Code

io.github.codespar/mcp-asaas

MCP server for Asaas — billing automation, Pix, boleto, credit card, subscriptions

client:VS Code transport:stdio runtime:npm

Install mcp asaas in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "asaas-api-key",
      "description": "ASAAS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-asaas": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-asaas"
      ],
      "env": {
        "ASAAS_API_KEY": "${input:asaas-api-key}"
      }
    }
  }
}

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

mcp asaas in other clients