cobroya
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MP_CURRENCY | No | Default currency (defaults to ARS) | ARS |
| MP_SUCCESS_URL | No | Default success redirect URL for payment preferences | |
| WA_NOTIFY_PHONE | No | Phone number for WhatsApp payment notifications | |
| TELEGRAM_BOT_TOKEN | No | Telegram bot token from @BotFather | |
| WHATSAPP_ACCESS_TOKEN | No | Meta Graph API token | |
| WHATSAPP_VERIFY_TOKEN | No | Webhook verification token | |
| WHATSAPP_PHONE_NUMBER_ID | No | WhatsApp Business phone number ID | |
| MERCADO_PAGO_ACCESS_TOKEN | Yes | Mercado Pago API access token | |
| MERCADO_PAGO_WEBHOOK_SECRET | No | HMAC secret for Mercado Pago webhook signature validation |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_payment_preferenceC | Creates a Mercado Pago checkout payment preference (payment link). Returns init_point URL for redirecting buyers. |
| get_paymentC | Retrieve a payment by its ID. Returns full payment details including status, amount, payer info. |
| create_refundA | Refund a payment fully or partially. Omit amount for full refund. |
| search_paymentsB | Search recent payments for the authenticated merchant. Supports filtering by status. |
| get_merchant_infoB | Retrieve the authenticated merchant's user profile including ID, nickname, and site. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose with no ambiguity. create_payment_preference handles payment initiation, create_refund manages refunds, get_merchant_info retrieves merchant data, get_payment fetches specific payment details, and search_payments searches multiple payments. The descriptions clearly differentiate their functions, making misselection unlikely.
All tool names follow a consistent verb_noun pattern using snake_case. The verbs (create, get, search) are applied logically to their respective nouns (payment_preference, refund, merchant_info, payment, payments), creating a predictable and readable naming convention throughout the set.
With 5 tools, the server is well-scoped for payment processing with Mercado Pago. Each tool earns its place by covering core operations: payment creation, refunds, merchant information retrieval, payment lookup, and payment searching. This count is neither too sparse nor bloated for the domain.
The tool set provides strong coverage for key payment workflows, including creation, retrieval, searching, and refunds. A minor gap exists in the lack of update or cancellation tools for payments or preferences, but agents can likely work around this given the available operations cover most essential tasks.