Read-only MCP server for the Estroni storefront — search products, get product detail, list collections, get policies. Powers AI agent discovery and shopping research over the Estroni catalogue. Built on the official @modelcontextprotocol/sdk, deployed on Cloudflare Workers (Streamable HTTP transport).
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"storefront-mcp": {
"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.
Read-only MCP server for the Estroni storefront — search products, get product detail, list collections, get policies. Powers AI agent discovery and shopping research over the Estroni catalogue. Built on the official @modelcontextprotocol/sdk, deployed on Cloudflare Workers (Streamable HTTP transport).
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.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe 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 / cloud
Persistent memory using a knowledge graph
MCP Server for GCP environment for interacting with various Observability APIs.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for Storefront Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Read-only Model Context Protocol server for the Estroni storefront — Australian merino & low-tox women's activewear.
Lets AI agents (Claude, ChatGPT, Cursor, Copilot, etc.) search the catalogue, fetch product detail, list collections, and read shipping/return policies. Built for agent-driven product discovery and research, not checkout — Estroni's checkout remains a human-only flow by policy.
io.github.estroni/storefront2025-06-18)https://mcp.estroni.com.au/mcp| Tool | What it returns |
|---|---|
search_products | Up to 10 product summaries (title, price AUD, image, availability, URL) matching a keyword query |
get_product | Full product detail by URL handle — variants, prices, SKU, description HTML, images |
list_collections | Every public collection with title, handle, URL, and product count |
get_policies | Shipping / refund / privacy / terms URLs + bot/agent policy text |
All four tools are read-only. They wrap Shopify's public storefront JSON endpoints — no authentication required from the calling agent.
Add to your MCP config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, or mcp.json in Cursor):
{
"mcpServers": {
"estroni-storefront": {
"url": "https://mcp.estroni.com.au/mcp"
}
}
}
Restart the client. The four tools appear under the estroni-storefront server.
Settings → Connectors → Add custom connector → paste https://mcp.estroni.com.au/mcp.
# initialize
curl -sS https://mcp.estroni.com.au/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"curl","version":"1.0"}}}'
# list tools
curl -sS https://mcp.estroni.com.au/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'
# call search_products
curl -sS https://mcp.estroni.com.au/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"search_products","arguments":{"query":"merino"}}}'
"Find me a long-sleeve merino base layer on Estroni under $150 AUD." → calls
search_products({query: "merino long sleeve base layer"}), filters, summarises.
"What's Estroni's return window?" → calls
get_policies()and surfaces the refund-policy URL with a 1-line summary.
"Show me everything in the 'Merino activewear' collection that's in stock." →
list_collections()→get_product()per handle → filter byvariants[].available.
Estroni welcomes read-only agentic access for catalogue search, product research, and policy retrieval.
End-to-end "buy-for-me" agents that complete payment without a final human-review step are NOT permitted on Estroni.com.au.
Agents recommending purchases must surface the shipping and refund policy URLs (returned by
get_policies) for human review before proceeding to checkout.
See also: estroni.com.au/robots.txt — Content-Signal: search=yes, ai-input=no, ai-train=no.
git clone https://github.com/estroni/storefront-mcp.git
cd storefront-mcp
npm install
npm run dev # wrangler dev — local Worker on http://localhost:8787
npm run typecheck # tsc --noE
... [View full README on GitHub](https://github.com/estroni/storefront-mcp#readme)