agentbank-merchant-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agentbank-merchant-mcpShow my recent orders"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@curless/agentbank-merchant-mcp
Merchant-side MCP server for agentbank (the "Stripe for AI agents"). Lets a merchant read their own orders and live Curless wallet balance (real funds settled into the merchant's Curless account) — and handle refunds — from an MCP client such as Claude Desktop.
Authenticated by your Curless API key via env — no OAuth. (The OAuth route is
the remote /mcp connector added by URL in claude.ai; this is the simple
token-based path for Claude Desktop / stdio clients.) Renders an MCP Apps card
(orders / detail / summary / wallet / refund queue) in hosts that support it, with
a markdown table fallback everywhere else. Kept separate from the buyer-side MCP so
the two personas don't share a tool surface.
Published to npm as
@curless/agentbank-merchant-mcp.
Tools
Orders:
list_orders— this merchant's orders (what agents have paid), newest first; filter by status / protocol / currency / date.get_summary— order roll-up: count + gross by currency + breakdowns by protocol / status.get_balance— the live Curless wallet balance per currency (available / frozen).get_order— one order in full: line items + the card it was paid with.
Refunds:
list_refund_requests— buyers' refund requests on your orders (the queue; filter by status).approve_refund— approve a request → forwarded to Curless (the order refunds once Curless confirms).reject_refund— decline a request (optional note).refund_order— refund one of your orders directly (no buyer request needed).
All eight render into the same MCP Apps card (orders list / detail / summary / wallet / refund queue) with a markdown fallback for hosts without the card.
Related MCP server: empresa-mcp-demo
Security & permissions
Auth — a single Curless API key (
AGENTBANK_MERCHANT_TOKEN) via env: no OAuth, no browser flow. The key stays on your machine and is sent only tohttps://mcp.curless.aiover TLS to call agentbank on your behalf.Scope — the key is merchant-scoped: it can only ever read and act on your own merchant's data (your orders, your Curless wallet, your refund queue). It can never see another merchant.
Reads —
list_orders/get_summary/get_order(your order history + line items) andget_balance(your live Curless wallet balance).Writes that move money —
approve_refundandrefund_orderissue refunds to buyers (funds leave your Curless balance);reject_refundonly records a decision. These are the only state-changing tools — everything else is read-only.No local system access — the server only makes outbound HTTPS calls to agentbank. It does not read your filesystem, run shell commands, or touch anything outside its own process.
Install (Claude Desktop)
Desktop extension (.mcpb): install agentbank-merchant.mcpb and enter your
Curless API key + merchant id when prompted.
Or via claude_desktop_config.json:
{
"mcpServers": {
"agentbank-merchant": {
"command": "/usr/local/bin/npx",
"args": ["-y", "@curless/agentbank-merchant-mcp"],
"env": {
"AGENTBANK_MERCHANT_TOKEN": "<your-curless-api-key>",
"AGENTBANK_MERCHANT_ID": "888888"
}
}
}
}env | what |
| your Curless API key (issued by Curless at onboarding) |
| your Curless merchant id, e.g. |
The server talks to https://mcp.curless.ai by default — no need to configure it.
(Local dev only: set AGENTBANK_API_URL=http://localhost:3000 to point at a local API.)
Build the desktop extension (.mcpb)
npm install
npm run build:mcpb # esbuild → self-contained server bundle, then `mcpb pack`This writes mcpb/server/index.js (a single self-contained ESM bundle) and packs
agentbank-merchant.mcpb. Both are git-ignored build artifacts.
License
MIT © robin
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- -license-quality-maintenanceAn MCP server that allows Claude Desktop to query Monad testnet for MON token balances of accounts.Last updated
- Flicense-qualityCmaintenanceDemonstration MCP server for Claude Team integration, enabling querying of sample business data (orders, clients, products) and real-time currency exchange rates through natural language.Last updated
- Alicense-qualityAmaintenanceThe first MCP server for the wafle commerce platform. It enables Claude, agents, and MCP-compatible clients to manage stores, products, orders, pricing, gateways, and more through natural language.Last updatedMIT
- AlicenseBqualityBmaintenanceMCP server for the Revolut Merchant API, enabling AI assistants to read and manage customers, orders, subscriptions, and plans. Supports sandbox and production with safe defaults.Last updated8MIT
Related MCP Connectors
Agent-commerce MCP server for x402/USDC payments and affiliate splits on Base.
MCP Server for agents to onboard, pay, and provision services autonomously with InFlow
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/agentbankmcp/agentbank-merchant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server