com um clique
mercadopago
Manage MercadoPago payments, customers and account via API
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Manage MercadoPago payments, customers and account via API
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Manage Cloudflare zones, DNS records, Workers, Pages and cache via API
Manage Cloudinary media assets, transformations and upload via REST API
Monitor infrastructure, query metrics, manage monitors and events via Datadog API
Manage DigitalOcean droplets, domains, databases, apps and volumes via API v2
Manage Firebase projects, Firestore, Auth users and Hosting via REST API
Manage Intercom conversations, contacts, articles and help center via REST API
| name | mercadopago |
| description | Manage MercadoPago payments, customers and account via API |
| user-invocable | true |
| argument-hint | ["payment ID or search query"] |
Connect to the MercadoPago API to manage payments, refunds, customers and payment methods. Pure Ruby, zero gems — stdlib only.
scripts/
├── auth.rb # Bearer token + mp_request helper (required by all scripts)
├── check_setup.rb # Check if token exists (outputs OK or SETUP_NEEDED)
├── save_token.rb # Save and validate an API token
├── payments.rb # List/search payments (optional --status flag)
├── payment.rb # Get payment details by ID
├── create_payment.rb # Create a new payment (requires confirmation)
├── refund.rb # Refund a payment (requires confirmation)
├── customers.rb # List/search customers
├── customer.rb # Get customer details by ID
├── payment_methods.rb # List available payment methods
└── account_balance.rb # Check account balance
ruby ~/.claude/skills/mercadopago/scripts/check_setup.rb
If the output is OK, proceed to the Flow section.
If the output is SETUP_NEEDED, guide the user step by step. Present ONE step at a time, wait for the user to confirm before moving to the next.
Step 1 — Ask the user to create an access token:
You need a MercadoPago Access Token. Go to the developer panel to get one:
https://www.mercadopago.com.br/developers/panel/app
Select your application (or create one), then go to Credentials and copy your Access Token (production or test, depending on your needs).
Paste the token here.
Step 2 — When the user pastes the token, save it:
ruby ~/.claude/skills/mercadopago/scripts/save_token.rb 'PASTED_TOKEN'
If the script outputs an error, the token is invalid. Ask the user to double-check and try again.
If setup is not complete, DO NOT proceed to the Flow. Complete all steps first.
The argument $ARGUMENTS may contain a payment ID or search query.
If $ARGUMENTS looks like a numeric ID, show payment details. Otherwise, list payments or ask the user what they want to do.
List/search payments:
ruby ~/.claude/skills/mercadopago/scripts/payments.rb
ruby ~/.claude/skills/mercadopago/scripts/payments.rb --status approved
ruby ~/.claude/skills/mercadopago/scripts/payments.rb --status pending
Get payment details:
ruby ~/.claude/skills/mercadopago/scripts/payment.rb PAYMENT_ID
Create a payment (requires user confirmation):
Ask the user for the payment details (amount, description, payment method, payer email). Confirm before executing.
ruby ~/.claude/skills/mercadopago/scripts/create_payment.rb '{"transaction_amount":100.0,"description":"Product","payment_method_id":"pix","payer":{"email":"buyer@example.com"}}'
Refund a payment (requires user confirmation):
Show payment details first, then ask: "Do you want to refund this payment?" Only execute after a "yes".
ruby ~/.claude/skills/mercadopago/scripts/refund.rb PAYMENT_ID
List customers:
ruby ~/.claude/skills/mercadopago/scripts/customers.rb
ruby ~/.claude/skills/mercadopago/scripts/customers.rb --email user@example.com
Get customer details:
ruby ~/.claude/skills/mercadopago/scripts/customer.rb CUSTOMER_ID
List available payment methods:
ruby ~/.claude/skills/mercadopago/scripts/payment_methods.rb
Check account balance:
ruby ~/.claude/skills/mercadopago/scripts/account_balance.rb
~/.config/mercadopago/token (outside the repo, never commit)https://api.mercadopago.com