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.
- 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
npx -y redtry-product-scraper-mcp
env SSE_LOCAL=true npx -y redtry-product-scraper-mcp
npm install -g redtry-product-scraper-mcp
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"]
}
}
}
- 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"],
}
}
}
Add this to your ./codeium/windsurf/model_config.json:
{
"mcpServers": {
"redtry": {
"command": "npx",
"args": ["-y", "redtry-product-scraper-mcp"],
}
}
}