mercadolivre-mcp-server
Verified Safeby suissa
Overview
An MCP server to integrate with Mercado Livre API, enabling e-commerce management (products, orders, questions, shipments, metrics) via stdio, REST, or WebSocket for AI assistants.
Installation
npm startEnvironment Variables
- MCP_MODE
- MCP_PORT
- ML_CLIENT_ID
- ML_CLIENT_SECRET
- ML_REDIRECT_URI
- ML_ACCESS_TOKEN
- ML_REFRESH_TOKEN
Security Notes
The core server code uses `process.env` for credentials, which is good practice. It also includes `try...catch` blocks for error handling in its API endpoints. Input validation schemas are defined with Zod for MCP tools, but the direct application of `.parse()` on all incoming arguments/parameters within server handlers (REST/WebSocket) is not explicitly shown, relying on the internal tool methods to handle types. A utility script `get-tokens.js` hardcodes `CLIENT_ID`, `CLIENT_SECRET`, and `REDIRECT_URI`, which is a security risk if used without modification or exposed.
Similar Servers
mcp-server
A Model Context Protocol (MCP) server that provides real-time Indian options market data and volatility analytics from GetOutpost.in for integration with AI chat models like Claude.
mcp-mercado-livre
Provides an MCP server tool to scrape product information, such as prices and availability, directly from Mercado Livre, with strong data validation.
Dida365MCP
This server integrates Dida365 (TickTick) task management capabilities, allowing an AI agent to create, read, update, and delete tasks and projects via the Model Context Protocol (MCP).
nancy-brain
Builds a searchable knowledge base from GitHub repositories and PDF articles for AI agents and assistants.