data
Mercado Pago MCP, CLI, and Lua Integration for AI Agents
Mercado Pago integration docs for AI agents: MCP gateway setup, Mercado Pago CLI commands, Lua API reference, credentials, and function schemas.Mercado Pago for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
mercado-pago.mercado_pago_list_payments | Read read | 8 | Search and list payments from Mercado Pago. Supports filtering by status, external reference, and date range. Returns a paginated list of payment records. |
mercado-pago.mercado_pago_get_payment | Read read | 1 | Retrieve full details of a specific Mercado Pago payment by its ID. Returns payment status, amount, payer information, and more. |
mercado-pago.mercado_pago_create_payment | Write write | 7 | Create a new payment in Mercado Pago. Requires the transaction amount, payment method ID, and payer email. Optionally specify the number of installments. |
mercado-pago.mercado_pago_list_customers | Read read | 3 | Search and list customers in Mercado Pago. Optionally filter by email. Returns a paginated list of customer records. |
mercado-pago.mercado_pago_get_customer | Read read | 1 | Retrieve full details of a specific Mercado Pago customer by their ID. Returns customer name, email, default card, and more. |
mercado-pago.mercado_pago_list_preferences | Read read | 3 | List checkout preferences from Mercado Pago. Returns a paginated list of checkout preference objects that define items, payer details, and payment settings. |
mercado-pago.mercado_pago_get_current_user | Read read | 0 | Get the authenticated Mercado Pago user's account information, including name, email, and user ID. |