mp-integrate

mp-integrate is a command for Claude Code from mercadopago/mercadopago-claude-marketplace. It costs 58 tokens per session (3,524 once invoked), scanned A, original, Apache-2.0.

A setup command for adding Mercado Pago payments to an application. Mercado Pago is a payment service, and the wizard guides integrations such as hosted checkout, QR payments, subscriptions, and payouts.

In plain words
What is it for?
Use it to start or migrate Mercado Pago integrations for online checkout, payment APIs, QR and Point devices, subscriptions, marketplaces, wallet connections, payouts, and SmartApps.
Why use it?
It removes the need to assemble the integration structure and choose payment-specific settings from scratch. It can also guide migration of older in-store QR or Point integrations to the Orders API.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool; mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the mercadopago plugin — 4 skills, 4 commands, 1 agent, 2 hooks, 1 MCP server shipped together

Good fit Use it to start or migrate Mercado Pago integrations for online checkout, payment APIs, QR and Point devices, subscriptions, marketplaces, wallet connections, payouts, and SmartApps.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add mercadopago/mercadopago-claude-marketplace
Claude Code
/plugin install mercadopago

Made for: Claude Code.

Or install mercadopago, the plugin that ships this one along with the rest of its 4 skills, 4 commands, 1 agent, 2 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mp-integrate

README.md
[![agentmods](https://agentmods.dev/badge/commands/mercadopago/mercadopago-claude-marketplace/mp-integrate/github.svg)](https://agentmods.dev/commands/mercadopago/mercadopago-claude-marketplace/mp-integrate)
Your own site
<a href="https://agentmods.dev/commands/mercadopago/mercadopago-claude-marketplace/mp-integrate"><img src="https://agentmods.dev/badge/commands/mercadopago/mercadopago-claude-marketplace/mp-integrate/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mp-integrate

Your own site · 80×15
<a href="https://agentmods.dev/commands/mercadopago/mercadopago-claude-marketplace/mp-integrate"><img src="https://agentmods.dev/badge/commands/mercadopago/mercadopago-claude-marketplace/mp-integrate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,524 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00058 $0.03524
Opus 5 $0.00029 $0.01762
Sonnet 5 $0.00012 $0.00705
Haiku 4.5 $0.00006 $0.00352

Measured 12d ago against content hash e1467b043590, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

mp-integrate scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/mercadopago/commands/mp-integrate.md · 194 lines

How it starts

The opening of the file, as written. The whole thing — 194 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/mp-integrate

This command runs the Mercado Pago integration wizard. Do not re-read this file in a loop, and do not delegate to the mp-integration-expert agent independently — that bypasses the wizard and produces invented defaults. Read the SKILL.md once per invocation — never skip the read even if you think you have it in context from a previous run. Always read fresh. Follow it step by step, and stop when the bundle is rendered or the user cancels.

Routing

Inspect $ARGUMENTS:

$ARGUMENTS starts with Skill file under ${CLAUDE_PLUGIN_ROOT}
webhook *mercadopago*/skills/mp-webhooks/SKILL.md
test-setup *mercadopago*/skills/mp-test-setup/SKILL.md
migrate *mercadopago*/skills/mp-integrate/SKILL-migrate.md
anything else (or empty) *mercadopago*/skills/mp-integrate/SKILL.md

Execution rules

  1. Use the active Claude plugin root directly — do not launch a Bash preflight to inspect CLAUDE_PLUGIN_ROOT. Read the routed skill file with the Read tool using its ${CLAUDE_PLUGIN_ROOT}/skills/... path; Claude Code resolves the exact placeholder to the active plugin version before the tool call. Never scan a cache, load another marketplace copy, or copy the plugin's .mcp.json into the developer's project. If Read reports that the routed file does not exist, instruct the developer to run /reload-plugins and retry.

  2. Pre-flight + readiness — execute in this exact order. Do not call MCP just to inspect connection state.

    Step 1.1 — Stack-aware environment check (before any MCP interaction):

    1. Inspect existing manifests and source files with Glob, Read, and Grep. Detect the project stack and its existing package manager before checking executables.

    2. Check only tools needed by the selected stack/product:

      Detected project Check only when needed
      JavaScript/TypeScript or plugin validation scripts node --version (Node 20+) and the package manager selected by the existing lockfile
      Python python3 --version; check pip/uv/poetry only if an SDK dependency must be changed
      PHP php --version; check Composer only if an SDK dependency must be changed
      Java/Kotlin/Android the existing Gradle/Maven wrapper and required JDK; prefer project wrappers
      Go go version only if the project is Go
      Static HTML with no build step no package manager prerequisite

Read the full file on GitHub · 194 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 194 lines · 58 tokens per session scan A e1467b043590

Subscribe to this mod's changes

mp-integrate is a command published in the GitHub repository mercadopago/mercadopago-claude-marketplace (26 stars, last pushed 8d ago), licensed Apache-2.0. It adds 58 tokens to every session and 3,524 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.