Product discovery for AI agents: ranked products and bundles from the open merchant web.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-periskop-ai-shopping-discovery": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Product discovery for AI agents. One MCP call turns a natural-language shopping intent into structured, ranked product results — best picks, alternatives, bundles, caveats, prices, and merchant links — from across independent stores on
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / ecommerce
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
An autonomous agent that conducts deep research on any data using any LLM providers
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for io.github.Periskop-ai/shopping-discovery and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Product discovery for AI agents. One MCP call turns a natural-language shopping intent into structured, ranked product results — best picks, alternatives, bundles, caveats, prices, and merchant links — from across independent stores on the open merchant web.
Periskop is a hosted, remote MCP server (closed source). You connect over the public HTTPS endpoint with a Periskop API key — nothing to install or run. It's the discovery layer for agentic commerce: an agent asks in natural language and Periskop returns ranked products with links back to the merchant. It stops at discovery — no checkout, no payments, no orders.
https://mcp.periskop.ai/v1/mcp (Streamable HTTP, JSON-RPC 2.0)Any product that needs to turn intent into reliable product results without owning checkout — agent platforms and orchestrators, AI worker platforms, AI shopping assistants, browser agents, commerce copilots, recommendation systems, procurement and B2B sourcing workflows, price and deal monitors, restock/reorder bots, gifting apps, resale and arbitrage workflows, and accessibility shopping tools. Concretely: an agent that plans a camping trip and returns the gear, a procurement copilot comparing options across suppliers, or a voice assistant surfacing the right product from a single sentence.
Periskop returns product results and merchant links only. It does not complete
checkout, create merchant carts, process payment, reserve inventory, or purchase items.
The user always completes any purchase on the merchant's own website. Every response
carries a purchase_boundary block restating this.
| Endpoint | https://mcp.periskop.ai/v1/mcp |
| Transport | Streamable HTTP — JSON-RPC 2.0 over HTTP POST (one JSON response per POST; no SSE) |
| Wire protocol | 2024-11-05 |
| Auth | Authorization: Bearer <YOUR_PERISKOP_API_KEY> (keys look like dp_…) |
| Get a key | https://periskop.ai/developer |
Unauthenticated requests receive 401 with a WWW-Authenticate: Bearer header.
Note: Periskop also supports OAuth 2.1 (Authorization Code + PKCE) for hosts that prefer it (tokens look like
dpo_…). API key is the simplest path and is all you need for the configs below.
All tools take a single JSON object argument. Schemas below are the public tool surface.
run_shopping_discoveryFind, choose, browse, recommend, get the best product, or build a bundle from a
natural-language request. The only required field is prompt.
| Field | Type | Required | Notes |
|---|---|---|---|
prompt | string | ✅ | Natural-language shopping intent |
mode | string | null | auto | browse | recommend | best | bundle (default auto) | |
store | string | null | auto, a store id, or a store name/hint | |
country | string | null | e.g. PT, ES | |
currency | string | null | e.g. EUR | |
language | string | null | e.g. en, pt | |
max_results | integer | null | Cap on returned products | |
response_format | string | null | full (default) | simple |
get_discovery_resultRetrieve a previous result by result_id. Results are temporary and may expire.
| Field | Type | Required |
|---|---|---|
result_id | string | ✅ |
response_format | string | null |
discover_supported_storesInspect the public stores Periskop can use. Returns public store capabilities only.
| Field | Type | Required |
|---|---|---|
country | string | null | |
category | string | null | |
capability | string | null (search | bundle | product_links) |
report_result_feedbackReport whether a result was good, bad, or mixed.
| Field | Type | Req