streamable-httpupdated 25d ago
Give your AI agent a working knowledge of Checkout.com — the current API reference, the integration guides, and the ability to act on real payments, without leaving your editor.
What can you do with Checkout com?
Checkout.com MCP Server
Give your AI agent a working knowledge of Checkout.com — the current API reference, the integration guides, and the ability to act on real payments, without leaving your editor.
Or, in Claude Code:
claude mcp add --transport http checkout-mcp https://mcp.checkout.com
Then sign in with your Checkout.com Dashboard account. It's a remote server — nothing to install, host, or keep updated, and no API keys to paste into a config file.
Why use it
Ask a general-purpose coding agent to integrate a payments API and it will improvise: invented fields, endpoints that no longer exist, request bodies that look right and fail in testing. This server replaces that guesswork with grounded answers.
- It reads our actual documentation. The technical docs, the complete API reference, and the support knowledge base — the live versions, not a stale snapshot from a training run.
- It recommends a real integration path. Describe your use case and stack, and get a route matched to it, rather than the one generic tutorial that happened to rank highest.
- It acts, not just advises. Check a payment, refund it, void an authorization, or create a payment link — from a plain-language request against your own account.
- It costs less per answer. Purpose-built, AI-optimized context instead of scraped HTML means fewer tokens burned and faster replies.
What you can ask
Your MCP client shows the full tool list the moment it connects.
Build and debug your integration
Which API operations and fields do I need to take a payment with PayPal?
Operate live payments
What's the status of payment
pay_xxxxx?
Refund payment
pay_xxxxx.
Environments
| Environment | URL |
|---|---|
| Production | https://mcp.checkout.com |
| Sandbox | https://checkout.mcp.sbox.cko.tech |
Access and permissions
You need an active Checkout.com Dashboard account. Authentication is OAuth 2.0: your client discovers the authorization server and opens a browser for you to sign in. No API keys are involved.
The agent inherits your permissions and nothing more. It can only perform an operation your Dashboard user is already allowed to perform — to refund a payment, for instance, your user needs the Refund payments permission.
Claude Desktop / Claude Code — add the server, then run /mcp to trigger the sign-in flow:
claude mcp add --transport http checkout-mcp https://mcp.checkout.com
VS Code — open the Command Palette, run MCP: Open User Configuration, and add:
{
"servers": {
"checkout-mcp": {
"url": "https://mcp.checkout.com"
}
}
}
Save, then run MCP: List Servers, select the Checkout MCP, and choose Start to sign in.
Cursor — add to ~/.cursor/mcp.json, or your project's .cursor/mcp.json:
{
"mcpServers": {
"checkout-mcp": {
"url": "https://mcp.checkout.com",
"auth": {
"CLIENT_ID": "checkout-mcp"
}
}
}
}
To disconnect, disable the server in your client's MCP settings or delete it from the config file.
Documentation and support
- Setup guide
- Checkout.com documentation
- API reference
- Questions or feedback: talk to your account manager or contact support
This repository holds the server.json metadata that lists the server in the
official MCP Registry. The server itself is
hosted and operated by Checkout.com
Install
Add Checkout com to your client. Pick the one you use.
claude mcp add --transport http checkout-com https://mcp.checkout.comcodex mcp add checkout-com --url https://mcp.checkout.com{
"mcpServers": {
"checkout-com": {
"url": "https://mcp.checkout.com"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"checkout-com": {
"type": "http",
"url": "https://mcp.checkout.com"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"checkout-com": {
"url": "https://mcp.checkout.com"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"checkout-com": {
"serverUrl": "https://mcp.checkout.com"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 18 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 14, 2026 |