redtry-product-scraper-mcp
v1.0.3
Published
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
Maintainers
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_productstool 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-serverTo 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.pyAfter 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.
