Mexican payment gateway: cards, OXXO cash deposits, and SPEI bank transfers. Your agent charges in MXN with local payment methods.
Conekta gives your agent 21 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
create_order β Create a new orderget_order β Get order details by IDlist_orders β List orders with filters// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_order", { /* ... */ });$ npm install @codespar/mcp-conektaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"conekta": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-conekta"
],
"env": {
"CONEKTA_API_KEY": "<your_conekta_api_key>"
}
}
}
}After restart, your agent can call any of the 21 tools below β try create_order first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
CONEKTA_API_KEYAPI key for Conekta
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_orderget_orderlist_orderscreate_customerget_customerlist_customerscreate_chargerefund_chargeMCP is a protocol β any framework that speaks it can mount this server.