Package Exports
- ecommmcp2
- ecommmcp2/dist/mcp.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ecommmcp2) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
๐ Ecomm MCP Server
This is a minimal MCP (Multi-Command Protocol) server implementation for product search, designed to work seamlessly with Claude's tool integration. It uses FastMCP
to expose a simple tool that allows language models to query an API for product listings.
๐ Features
- MCP-compatible server for Claude integration
search_products
tool for querying product- Markdown-formatted responses with clickable product links and prices
- Easy testing and integration with Claude desktop app
๐งช Local Development
First, clone the repository:
git clone https://github.com/Redtri-git/Ecomm-MCP.git
cd ecomm-mcp-server
To run this MCP server in development mode:
uv run mcp dev main.py
๐ Install for Claude
To register and install this tool with Claude:
uv run mcp install main.py
After installation, go to:
Claude > Settings > Developer > Edit Config
Find or add your configuration for the tool in claude_desktop_config.json. It should look like this:
{
"mcpServers": {
"Ecomm": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"--with",
"requests",
"mcp",
"run",
"/path/to/your-cloned-mcp-server/main.py"
]
}
}
}
๐ง Update the path in the last argument to the correct location of your main.py.