LatAm's largest marketplace: product listing, order management, seller metrics, and shipping labels. Your agent sells across 18 countries.
Mercado Libre gives your agent 22 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
search_products β Search products in Mercado Libre marketplaceget_product β Get detailed product information by item IDget_product_description β Get product description text by item ID// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("search_products", { /* ... */ });$ npm install @codespar/mcp-mercado-libreAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"mercado-libre": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-mercado-libre"
],
"env": {
"MELI_ACCESS_TOKEN": "<your_meli_access_token>"
}
}
}
}After restart, your agent can call any of the 22 tools below β try search_products first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
MELI_ACCESS_TOKENAPI key/token for mercado-libre
Each tool is independent β your agent loads only what it needs to reduce context and response time.
search_productsget_productget_product_descriptionlist_categoriesget_categorypredict_categoryget_trendslist_listingsMCP is a protocol β any framework that speaks it can mount this server.