Connect your AI agent to the Magpie Payment Platform. 33 tools covering payments, customers, checkout, invoices, and payment links.
No installation required. Connect via OAuth at https://mcp.magpie.im/mcp — your API keys are stored securely on the server.
~/.cursor/mcp.json{ "mcpServers": { "magpie": { "url": "https://mcp.magpie.im/mcp" } } }
.vscode/mcp.json{ "servers": { "magpie": { "type": "http", "url": "https://mcp.magpie.im/mcp" } } }
claude_desktop_config.json{ "mcpServers": { "magpie": { "command": "npx", "args": ["mcp-remote", "https://mcp.magpie.im/mcp"] } } }
claude mcp add --transport http magpie https://mcp.magpie.im/mcp{ "mcpServers": { "magpie": { "serverUrl": "https://mcp.magpie.im/mcp" } } }
https://mcp.magpie.im/mcpYour API keys stay on your machine. Requires Node.js 18+.
{ "mcpServers": { "magpie": { "command": "npx", "args": ["-y", "magpie-mcp-server"], "env": { "MAGPIE_PUBLIC_KEY": "pk_live_...", "MAGPIE_SECRET_KEY": "sk_live_..." } } } }
{ "inputs": [ { "type": "promptString", "id": "pub", "description": "Magpie Public Key" }, { "type": "promptString", "id": "sec", "description": "Magpie Secret Key", "password": true } ], "servers": { "magpie": { "type": "stdio", "command": "npx", "args": ["-y", "magpie-mcp-server"], "env": { "MAGPIE_PUBLIC_KEY": "${input:pub}", "MAGPIE_SECRET_KEY": "${input:sec}" } } } }
{ "mcpServers": { "magpie": { "command": "npx", "args": ["-y", "magpie-mcp-server"], "env": { "MAGPIE_PUBLIC_KEY": "pk_live_...", "MAGPIE_SECRET_KEY": "sk_live_..." } } } }
npm install -g magpie-mcp-server
Then replace npx -y magpie-mcp-server with magpie-mcp-server in any config above.
~/.openclaw/openclaw.json{ "mcpServers": { "magpie": { "command": "npx", "args": ["mcp-remote", "https://mcp.magpie.im/mcp"] } } }
~/.openclaw/openclaw.json{ "mcpServers": { "magpie": { "command": "npx", "args": ["-y", "magpie-mcp-server"], "env": { "MAGPIE_PUBLIC_KEY": "pk_live_...", "MAGPIE_SECRET_KEY": "sk_live_..." } } } }
After updating, restart the OpenClaw gateway: openclaw gateway restart