mcp pagar me for VS Code
io.github.codespar/mcp-pagar-me
MCP server for Pagar.me — orders, charges, recipients, transfers, plans, subscriptions, webhooks
client:VS Code
transport:stdio
runtime:npm
Install mcp pagar me in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pagarme-api-key",
"description": "PAGARME_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "pagarme-public-key",
"description": "PAGARME_PUBLIC_KEY",
"password": true
}
],
"servers": {
"mcp-pagar-me": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-pagar-me"
],
"env": {
"PAGARME_API_KEY": "${input:pagarme-api-key}",
"PAGARME_PUBLIC_KEY": "${input:pagarme-public-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs