Ecomm MCP Server
A product search server that provides markdown-formatted responses with clickable product links and prices.
🛒 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
Running
Running with NPX
npx -y redtry-product-scraper-mcp
To run with SSE instead of Stdio:
env SSE_LOCAL=true npx -y redtry-product-scraper-mcp
Manual install with NPM
npm install -g redtry-product-scraper-mcp
Adding to Claude Desktop
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: Add the following to your configuration file:
{
"mcpServers": {
"redtry": {
"command": "npx",
"args": ["-y", "redtry-product-scraper-mcp"]
}
}
}
Adding to Cursor
- Open Cursor Settings
- Go to Features > MCP Servers
- Click "+ Add new global MCP server"
- Enter the following code:
{
"mcpServers": {
"redtry": {
"command": "npx",
"args": ["-y", "redtry-product-scraper-mcp"],
}
}
}
Adding to Windsurf
Add this to your ./codeium/windsurf/model_config.json:
{
"mcpServers": {
"redtry": {
"command": "npx",
"args": ["-y", "redtry-product-scraper-mcp"],
}
}
}
Related Servers
Library Docs MCP Server
Search and fetch documentation for popular libraries like Langchain, Llama-Index, and OpenAI using the Serper API, providing updated information for LLMs.
Eventbrite
Interact with the Eventbrite API to search for events, get event details, and retrieve venue information.
G-Search MCP
A Google search server using Playwright for parallel keyword searches.
MCP RAG
A managed Retrieval-Augmented Generation (RAG) server using MCP, integrated with knowledge bases and OpenSearch.
OpenStreetMap
Enhances LLMs with location-based services and geospatial data from OpenStreetMap.
Librarian
A server to query Wikipedia and automatically fact-check information for any LLM with a compatible MCP client.
Lune
Scientific research knowledge and tools
Danube
AI Tools Marketplace
TripGo
Find transport-related locations, departures, and routes using the TripGo API.
Greptile
Code search and querying using the Greptile API.