Brazilian digital wallet with 60M+ users. Merchant checkout API for payments, recurrency plans, and subscriptions. Alpha release on npm โ core payments verified, recurrency payload shapes pending sandbox validation.
$ npm install @codespar/mcp-picpay@alphaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"picpay": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-picpay@alpha"
],
"env": {
"PICPAY_TOKEN": "<your_picpay_token>",
"PICPAY_SELLER_TOKEN": "<your_picpay_seller_token>"
}
}
}
}After restart, your agent can call any of the 20 tools below โ try create_payment first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
PICPAY_TOKENPicPay merchant integration token (sent as x-picpay-token header)
PICPAY_SELLER_TOKENPicPay seller token used to validate webhook callbacks (x-seller-token header)
PICPAY_BASE_URLPicPay ecommerce API base URL. Defaults to https://appws.picpay.com/ecommerce/public.
Each tool is independent โ your agent loads only what it needs to reduce context and response time.
create_paymentget_payment_statuscancel_paymentcreate_planlist_plansupdate_plandelete_plancreate_subscriptionMCP is a protocol โ any framework that speaks it can mount this server.