Conekta MCP Server
OfficialExposes Conekta's core payment operations as tools, enabling management of customers, orders, charges, refunds, subscriptions, and checkouts via the Conekta payment API.
Click 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., "@Conekta MCP Servershow my current account balance"
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.
Conekta MCP Server
MCP server for the Conekta payment API. Exposes Conekta's core payment operations as tools for the Model Context Protocol.
Setup
# Install dependencies
uv sync
# Set your Conekta API key
export CONEKTA_API_KEY=key_your_api_key
# Run the server
uv run python -m conekta_mcpBy default the server uses the stdio transport for local MCP clients such as Claude Desktop.
Related MCP server: Vaultix MCP Server
Hosted MCP
The server is available remotely over Streamable HTTP at:
https://mcp.conekta.com/mcpUse this endpoint if you want to connect to the hosted Conekta MCP server. Send your Conekta API key in the request header:
Authorization: Bearer key_xxxConfiguration (Hosted / Streamable HTTP)
If your MCP client supports remote servers over HTTP, the JSON config should include the hosted URL and the Authorization header.
Example:
{
"mcpServers": {
"conekta": {
"url": "https://mcp.conekta.com/mcp",
"headers": {
"Authorization": "Bearer key_xxx"
}
}
}
}Notes:
Replace
key_xxxwith your real Conekta private API key.The header must be exactly
Authorization.The value must include the
Bearerprefix.
Claude Code (CLI)
claude mcp add --transport http conekta https://mcp.conekta.com/mcp \
--header "Authorization: Bearer key_xxx"Replace key_xxx with your real Conekta private API key.
Configuration (Claude Desktop / stdio)
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"conekta": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/mcp", "run", "python", "-m", "conekta_mcp"],
"env": {
"CONEKTA_API_KEY": "key_your_api_key"
}
}
}
}Available Tools
Resource | Tools |
Balance |
|
Customers |
|
Orders |
|
Charges |
|
Refunds |
|
Plans |
|
Subscriptions |
|
Checkouts |
|
Events |
|
Companies |
|
Docker
docker run --pull=always -i --rm \
-e CONEKTA_API_KEY=key_your_api_key \
ghcr.io/conekta/mcp-server:latestConfiguration (Claude Desktop with Docker / stdio)
{
"mcpServers": {
"conekta": {
"command": "docker",
"args": ["run", "--pull=always", "-i", "--rm", "-e", "CONEKTA_API_KEY", "ghcr.io/conekta/mcp-server:latest"],
"env": {
"CONEKTA_API_KEY": "key_your_api_key"
}
}
}
}Development
# Install with dev dependencies
uv sync --extra dev
# Run tests
uv run pytest tests/ -vMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-quality-maintenanceEnables AI agents to interact with multiple payment providers (Stripe, Paystack) through a unified API. Supports payment initialization, verification, refunds, customer management, and invoicing without requiring knowledge of specific provider implementations.Last updated2
- FlicenseBquality-maintenanceEnables Claude to interact with the Vaultix Payment API for managing charges, customers, refunds, payment links, payouts, and balance transactions. Supports Brazilian payment methods including PIX, card, and boleto payments.Last updated32
- AlicenseAqualityDmaintenanceConnects AI agents to Mercado Pago, the leading payment platform in Latin America. Create payment links, search payments, get payment details, issue refunds, and retrieve merchant info.Last updated5232MIT
- AlicenseAqualityDmaintenanceEnables interaction with Tabby BNPL platform for managing checkout sessions, payments, captures, refunds, and voids.Last updated829MIT
Related MCP Connectors
Create payment orders, checkout, subscriptions & UPI via PineLabs Plural PG gateway
Stone's payments gateway (api.pagar.me), orders, charges (card, Pix, boleto), customers and cards, p
PagSeguro / PagBank payments, orders, charges (get, cancel, refund), checkouts and public key via th
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/conekta/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server