Mercado Livre MCP Server: A Model Context Protocol (MCP) server for interacting with the Mercado Livre. Provides tools for fetching product data, such as prices and availability, with a layered architecture and data validation using Zod
{
"mcpServers": {
"mcp-mercado-livre": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Mercado Livre MCP Server: A Model Context Protocol (MCP) server for interacting with the Mercado Livre. Provides tools for fetching product data, such as prices and availability, with a layered architecture and data validation using Zod
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 1 days ago. 6 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Mcp Mercado Livre and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project is part of the Model Context Protocol (MCP) ecosystem and provides tools for integrating with external sources and managing specific domain models. It is designed to demonstrate how to build an MCP server that scrapes products from Mercado Livre, with strong data validation to ensure reliability.
| An integration that enables MCP tools to scrape product data, such as prices and availability, directly from Mercado Livre. |
|
fetch (infrastructure layer).The project follows a layered architecture inspired by Domain-Driven Design (DDD) patterns:
Domain (src/domain):
Defines interfaces and types that represent data structures (e.g., Mercado Livre).
Infrastructure (src/infrastructure):
Implements external services, such as MercadoLivreApiService, responsible for making HTTP calls to the Mercado Livre API.
Application (src/application):
Contains business logic in MercadoLivreService, which processes and formats data from the infrastructure.
Interface (src/interface):
Includes controllers (MercadoLivreToolsController) that register tools in the MCP server, define validation schemas, and return results.
Entry Point (src/main.ts):
Initializes the McpServer, configures the transport (StdioServerTransport), instantiates services and controllers, and starts listening on stdio.
The folder structure is as follows:
src/
├── domain/
│ └── models/ # Domain interfaces
├── infrastructure/
│ └── services/ # External API implementations (Mercado Livre)
├── application/
│ └── services/ # Business logic and data formatting
├── interface/
│ └── controllers/ # MCP tool registration and validation
└── main.ts # Server entry point
build/ # Compiled JavaScript code
.vscode/ # Contains the mcp.json file, MCP Server config
git clone git@github.com:newerton/mcp-mercado-livre.git
cd mcp-mercado-livre
npm install
npm run build
Ctrl+Shift+P and select "MCP: List Servers"Ctrl+Shift+P and select "MCP: List Servers"Pull requests are welcome! Feel free to open issues and discuss improvements.
This project is licensed under the MIT license - see the LICENSE file for details.