SnappShop MCP Server
Let AI assistants search products and read product details on snappshop.ir through the Model Context Protocol (MCP).
What is MCP?
The Model Context Protocol is an open standard that lets AI apps such as Claude call external tools in a uniform way. This server exposes SnappShop as a set of tools, so you can ask an assistant things like "find the cheapest wireless headphones with good ratings" and it will query SnappShop live and answer from real data.
Server URL
https://snappshop.dr98mav-hhdrz.arvanedge.ir/mcpConnect
- Claude.ai: Settings → Connectors → Add custom connector, then paste the URL above.
- Other MCP clients: add a remote server using the Streamable HTTP transport with the same URL.
Tools
search_products
Search SnappShop products by keyword. Returns title, price (Toman), rating, URL.
query* string · limit number
get_product
Get detailed info for one product: best price, brand, attributes, images.
product_id* string
get_categories
List SnappShop product categories.
* required. All tools also accept optional lat and lng (defaults to Tehran).
Try it from a terminal
curl -s https://snappshop.dr98mav-hhdrz.arvanedge.ir/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_products","arguments":{"query":"هدفون","limit":3}}}'