An open-source Model Context Protocol (MCP) server that provides clean, real-time product search, price comparison, and market intelligence for Indian e-commerce platforms (Amazon India and Flipkart).
This server acts as a standardized protocol bridge, feeding clean product titles, pricing arrays, discounts, review counts, and URLs directly into an LLM's prompt context (for tools like Cursor, Claude Desktop, or Cline).
- Side-by-Side Comparison: Unified search across Amazon.in and Flipkart, automatically deduplicated and sorted by price (lowest first).
- Resilient Grouped Scraper: Custom CSS-selector-free parser for Flipkart that safely handles dynamic layouts (List & Grid views) by grouping matching product links.
- Proxy/WAF Bypass Ready: Built-in support for proxy configurations (
RETAIL_INTEL_PROXY) to route requests through scraping networks or captcha solvers. - Ultra-Lightweight: Written with
httpx(HTTP/2 enabled) andBeautifulSoup4. No heavy headless browser binaries required in default mode.
Install the package via pip from your localized environment:
pip install mcp-india-retail-intelligenceIf you are developing or running the package locally:
# Clone the repository
git clone https://github.com/balaadityaai/mcp-india-retail-intelligence.git
cd mcp-india-retail-intelligence
# Install in editable mode
pip install -e .To link this server into your AI agent host environment, add the server details to the respective configuration files.
Add this block to your %APPDATA%\Claude\claude_desktop_config.json file:
{
"mcpServers": {
"india-retail-intel": {
"command": "python",
"args": [
"-m",
"mcp_retail_intel.server"
],
"env": {
"RETAIL_INTEL_PROXY": ""
}
}
}
}(Note: If you have a captcha-solving proxy or proxy list, input it into the RETAIL_INTEL_PROXY environment variable, e.g., http://username:password@proxy.example.com:8080)
In your Editor's MCP settings panel, select command-type: command and configure:
- Command:
python -m mcp_retail_intel.server - Env Variable: Key:
RETAIL_INTEL_PROXY, Value:<your_proxy_url>
Searches Flipkart for the given keywords.
- Arguments:
query(string, required): E-commerce product name.limit(integer, optional, default: 5): Maximum items to return.
- Returns: Array of products with titles, prices, MRP, discount percentage, rating, review counts, URLs, and image links.
Searches Amazon India for the given keywords.
- Arguments:
query(string, required): Product search terms.limit(integer, optional, default: 5): Maximum items to return.
Runs queries concurrently on both platforms, merges the listings, filters out invalid values, and returns a unified list sorted from lowest to highest price.
- Arguments:
query(string, required): Product name.limit(integer, optional, default: 5): Top items to fetch from each platform.
Because Amazon India and Flipkart utilize Web Application Firewalls (WAFs), cloud hosting IPs and intensive desktop queries may receive CAPTCHA blocks.
To ensure high availability in production setups:
- Obtain an API key or proxy address from a rotating proxy service (e.g., ZenRows, Webshare, ScraperAPI).
- Set the
RETAIL_INTEL_PROXYenvironment variable to your proxy URL. The server's HTTP engine will automatically route requests through the proxy.
Distributed under the MIT License. See LICENSE for details.