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
MCP Web Search Tool
A server for real-time web search using pluggable providers, powered by the Brave Search API.
Embedding MCP Server
An MCP server powered by txtai for semantic search, knowledge graphs, and AI-driven text processing.
Google Search Console
An MCP server for accessing Google Search Console data, including site performance and indexing status.
Dartpoint
Access public disclosure information for Korean companies (DART) using the dartpoint.ai API.
Crypto News MCP Server
Provides real-time cryptocurrency news for AI agents using the NewsData.io API.
Rememberizer MCP Server for Common Knowledge
Access and search personal or team knowledge repositories, including documents and Slack discussions, using semantic search and retrieval tools.
Ubersuggest
Perform AI-assisted SEO analysis using Neil Patel's Ubersuggest platform.
arXiv MCP Server
Search and analyze academic papers on arXiv.
Data Gouv MCP Server
Interact with the French government's open data platform (data.gouv.fr) to search for company information.
Semantic Search Of Reddit
MCP server that enables AI assistants to search Reddit conversations, explore subreddits, and access trending topics.