No install? Use cloud.anythingmcp.com directly.
Sign in, install the Mercado Libre in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → Mercado Libre klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Mercado Libre + ChatGPT
LATAM's largest e-commerce marketplace — search items, fetch product details, look up users, and list seller orders across Brasil (MLB), Argentina (MLA), Mexico (MLM), Chile (MLC), Colombia (MCO), Peru (MPE), Uruguay (MLU). OAuth2 access token required for every endpoint.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
MERCADO_LIBRE_CLIENT_ID, MERCADO_LIBRE_CLIENT_SECRET
Schritt 1 — Zugangsdaten holen
All endpoints now require OAuth2. Historically /sites/{site_id}/search, /items/{item_id} and /users/{user_id} were public, but as of 2025 Mercado Libre returns HTTP 403 on unauthenticated calls. You need a valid access token for every tool in this adapter.
Creating an app: register at https://developers.mercadolibre.com/devcenter → 'Create app' → set a redirect URI (e.g. https://your-anythingmcp-host/oauth/callback). Copy client_id and client_secret into the env vars.
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Schritt 3 — Connector in ChatGPT hinzufügen
ChatGPT unterstützt MCP-Server über die Connectors-Funktion (Plus-/Pro-/Team-/Enterprise-Pläne). Der kostenlose Tarif unterstützt keine eigenen Connectors.
- Öffne ChatGPT → Einstellungen → Connectors (oder klicke das 🔧-Icon im Composer → Manage connectors).
- Klicke "Add custom connector".
- Trage ein:
- Name:
Mercado Libre - MCP server URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer Token → MCP-API-Key einfügen (aus AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Klicke Connect zum Autorisieren.
Verfügbare Tools
| Tool | What it does |
|---|---|
mercado_libre_search_items | Search items in a Mercado Libre site (country marketplace) |
mercado_libre_get_item | Fetch full details for a Mercado Libre item by id |
mercado_libre_get_user | Get a user's public profile (typically used to inspect a seller) |
mercado_libre_list_orders | List orders for an authenticated seller |
FAQ
Funktioniert der kostenlose ChatGPT-Tarif mit eigenen MCP-Connectors? Nein — Plus, Pro, Team oder Enterprise erforderlich.