MCP ExplorerExplorer

Mercadolibre Mcp

@lumileon 10 months ago
6 MIT
FreeCommunity
AI Systems
MercadoLibre MCP Server provides access to MercadoLibre API for product search, reviews, and seller reputation.

Overview

What is Mercadolibre Mcp

mercadolibre-mcp is an MCP server that provides access to the MercadoLibre API, allowing users to interact with various features of the MercadoLibre platform.

Use cases

Use cases include building a product search engine, developing a review aggregator for MercadoLibre products, and creating tools for analyzing seller performance.

How to use

To use mercadolibre-mcp, you need a MercadoLibre Client ID and Client Secret. Set these as environment variables along with the SITE_ID for the desired MercadoLibre site. You can install it via Smithery or NPX.

Key features

Key features include searching for products, retrieving product reviews, obtaining product descriptions, and checking seller reputation.

Where to use

mercadolibre-mcp can be used in e-commerce applications, market research, product comparison tools, and any platform that requires integration with MercadoLibre services.

Content

MseeP.ai Security Assessment Badge


smithery badge

MercadoLibre MCP Server

An MCP server that provides access to MercadoLibre API.

MercadoLibre Server MCP server

IMPORTANT: due to changes in MercadoLibre’s API policies, it is no longer possible to access their search API. As a result, we have had to deprecate the search_products tool. This change is in compliance with MercadoLibre’s new restrictions on API usage. Other tools remain functional and will continue to be supported.

Features

Tools

  • search_products - DEPRECATED: Search products in MercadoLibre, and return a list of products. (No longer available due to API policy changes)
    • query - The search query
    • category - The category to search in
    • filters - The filters to apply
  • product_reviews - Get product reviews
  • product_description - Get product description
  • seller_reputation - Get seller reputation

Setup

Prerequisites

You’ll need a MercadoLibre Client ID and Client Secret to use this server. You can get one for free at https://developers.mercadolibre.com/, create an application and get the credentials.

Once you have the credentials, you can set the CLIENT_ID and CLIENT_SECRET environment variables. And theres also the need to set the SITE_ID environment variable to the site you want to use.

Mercado Libre Site ID

  • MLA: Argentina (default)
  • MLB: Brasil
  • MCO: Colombia
  • MEX: México
  • MLU: Uruguay
  • MLC: Chile

Installation

There are two ways to use this server:

Installing via Smithery

To install MercadoLibre MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @lumile/mercadolibre-mcp --client claude

Option 1: NPX (Recommended)

Add this configuration to your Claude Desktop config file:

{
  "mcpServers": {
    "mercadolibre-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mercadolibre-mcp"
      ],
      "env": {
        "CLIENT_ID": "<YOUR_CLIENT_ID>",
        "CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
        "SITE_ID": "<YOUR_SITE_ID>"
      }
    }
  }
}

Option 2: Local Installation

  1. Clone the repository
  2. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. Add this configuration to your Claude Desktop config:
{
  "mcpServers": {
    "mercadolibre-mcp": {
      "command": "node",
      "args": [
        "/path/to/mercadolibre-mcp/dist/index.js"
      ],
      "env": {
        "CLIENT_ID": "<YOUR_CLIENT_ID>",
        "CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
        "SITE_ID": "<YOUR_SITE_ID>"
      }
    }
  }
}

Debugging

Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.

Contributing

Contributions are extremely welcome! Please open a PR with new MCP servers or any other improvements to the codebase.

Disclaimer

This project is not affiliated with MercadoLibre. All logos are trademarks of their respective owners.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.


Made with ❤️ by Lumile

Contact us for custom AI development and automation solutions.

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers