Manage SpherePay customers, bank accounts, wallets, and transfers from Claude.
Manage SpherePay customers, bank accounts, wallets, and transfers from Claude. Exposed over MCP by the spherepay mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.
Add to your Claude Desktop config (claude_desktop_config.json):
Everything the assistant can do here goes through one of these:
onboard_customer — Create a customer (individual or business) and generate TOS/KYC verification linksverify_customer — Two-step verification: send OTP, then verify with face recognitionsetup_funding — Create a bank account (USD/EUR) or crypto wallet for a customerexecute_transfer — Transfer money between funding instruments with automatic idempotencyonboard_business_rep — Create and verify a business representativesetup_virtual_account — Create a virtual account for automatic fiat-to-stablecoin conversionsetup_offloader_wallet — Create an offloader wallet for stablecoin-to-fiat off-rampcreate_webhook — Subscribe to event notifications via HTTPS webhookssubmit_cctp_offramp — Submit a CCTP burn transaction for cross-chain off-ramp redemptionlist_virtual_account_transfers — List deposits and conversions for a virtual accountget_webhook — Retrieve webhook details and delivery statusget_event — Retrieve event details and webhook delivery recordsYou will need 2 environment variables: SPHEREPAY_BASE_URL, SPHEREPAY_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Among the monitoring and observability options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. SpherePay's toolset — onboard_customer, verify_customer, setup_funding and 11 more — is a fair guide to whether it matches your workflow. It is maintained by danchev; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against SpherePay's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| onboard_customer | Create a customer (individual or business) and generate TOS/KYC verification links |
| verify_customer | Two-step verification: send OTP, then verify with face recognition |
| setup_funding | Create a bank account (USD/EUR) or crypto wallet for a customer |
| execute_transfer | Transfer money between funding instruments with automatic idempotency |
| onboard_business_rep | Create and verify a business representative |
| setup_virtual_account | Create a virtual account for automatic fiat-to-stablecoin conversion |
| setup_offloader_wallet | Create an offloader wallet for stablecoin-to-fiat off-ramp |
| create_webhook | Subscribe to event notifications via HTTPS webhooks |
| submit_cctp_offramp | Submit a CCTP burn transaction for cross-chain off-ramp redemption |
| list_virtual_account_transfers | List deposits and conversions for a virtual account |
| get_webhook | Retrieve webhook details and delivery status |
| get_event | Retrieve event details and webhook delivery records |
| Prerequisites | The Prerequisites tool exposed by this server. |
| Standalone | The Standalone tool exposed by this server. |
{
"mcpServers": {
"spherepay": {
"command": "uvx",
"args": ["spherepay-mcp"],
"env": {
"SPHEREPAY_BASE_URL": "https://api.sandbox.spherepay.co",
"SPHEREPAY_API_KEY": "your_api_key_here"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| SPHEREPAY_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| SPHEREPAY_API_KEY | Credential the server authenticates with. | Yes |
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Dashboards, Prometheus and Loki queries, incidents and alerts — observability by conversation.
Errors with full context — stack traces, issue triage and AI-powered root-cause analysis from Sentry's server.
Enables enhanced web research capabilities for large language models through intelligent search queuing and advanced content extraction.
Automates browser interactions and enables Large Language Models (LLMs) to interact with web pages through Playwright and Chrome DevTools Protocol
Guides tool usage by providing recommendations for MCP tools at each problem-solving stage.