- Home
- MCP servers
- Ecomm
Ecomm
- typescript
0
GitHub Stars
typescript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"redtri-git-ecomm-mcp": {
"command": "npx",
"args": [
"-y",
"redtry-product-scraper-mcp"
],
"env": {
"SSE_LOCAL": "true"
}
}
}
}You have a lightweight MCP server that lets language models query product listings and receive results in Markdown with clickable links and prices. It’s designed for fast integration with Claude and similar MCP clients, providing a simple tool to fetch and present product data.
How to use
To use this MCP server, connect it to an MCP client such as Claude. You can ask it to search for products, and it will return a Markdown-formatted list with links and prices. Use natural language prompts like “show me electronics under $100” or “find running shoes.” The server will return concise results suitable for display in your chat or UI, and you’ll see product links that you can open directly.
How to install
Prerequisites: you need Node.js and npm installed on your machine.
Install the MCP server globally so you can run it from anywhere.
Run the server using npx to start the MCP interface.
Optionally, run with SSE instead of Stdio for local testing.
Configuration snippets for MCP clients and runtimes
{
"mcpServers": {
"redtry": {
"command": "npx",
"args": ["-y", "redtry-product-scraper-mcp"]
}
}
}
Notes and usage tips
Tests and experimentation are straightforward: install, start the MCP server, then configure your MCP client to point at the running process. If you prefer SSE for local testing, set the SSE_LOCAL environment variable to true before starting the server.
Available tools
search_products
Tool to query the product listings API and retrieve matching products; results are formatted in Markdown with clickable links and prices.