General
How many tools are available? 27 tools across 8 domains: Customer, Product, Plan, Purchase, Payment, Wallet, Usage, and Transaction. What AI assistants are supported? Any assistant that supports the Model Context Protocol with Streamable HTTP transport. This includes Cursor, Claude Desktop, Windsurf, and others. See Installation for setup instructions. Is my data isolated? Yes. Every tool call is scoped to the provider account associated with your credentials. You cannot access another provider’s data.Authentication
What authentication methods are supported? The MCP server supports two authentication methods:- OAuth login — For clients that support OAuth (Claude.ai, Claude Desktop). You sign in with your SolvaPay dashboard credentials (email code, Google, or GitHub) and authorize the connection. No API key needed.
- API key — For config-based clients (Cursor, VS Code). Pass your API key via the
X-API-Keyheader or theAuthorization: Bearerheader.
Technical
What transport does the MCP server use? Streamable HTTP. The server operates in stateless mode — every request is independently authenticated. No sessions or cookies are required. Is there a rate limit? Rate limits depend on your plan. If a customer’s usage limits are exceeded, thecheck_limits tool will indicate this and can provide a checkout URL for the customer to upgrade.
What happens if the server is down?
Tool calls will fail with a connection error. The SolvaPay MCP Server runs on Google Cloud with multiple replicas for high availability. Check status.solvapay.com for service status.
Are requests encrypted?
Yes. All communication between your MCP client and the SolvaPay server uses HTTPS (TLS 1.2+).
Error Handling
What does a tool error look like? Failed tool calls return a JSON error:| Code | Description |
|---|---|
NOT_FOUND | The requested resource does not exist |
VALIDATION_ERROR | Invalid or missing parameters |
UNAUTHORIZED | Invalid or expired credentials (API key or OAuth token) |
INTERNAL_ERROR | Server-side error — retry or contact support |