Skip to content
VS Code

mcp matera for VS Code

io.github.codespar/mcp-matera

MCP server for Matera — Brazilian core-banking BaaS over Pix, DICT, and Pix Automático

client:VS Code transport:stdio runtime:npm

Install mcp matera in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "matera-client-id",
      "description": "MATERA_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "matera-client-secret",
      "description": "MATERA_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "matera-base-url",
      "description": "MATERA_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-matera": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-matera"
      ],
      "env": {
        "MATERA_CLIENT_ID": "${input:matera-client-id}",
        "MATERA_CLIENT_SECRET": "${input:matera-client-secret}",
        "MATERA_BASE_URL": "${input:matera-base-url}"
      }
    }
  }
}

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

mcp matera in other clients