Exposes a read-only Shopify catalogue for an Australian low-tox lifestyle brand via five JSON-RPC tools: search_products, get_product, list_collections, filter_by_certification, and get_policies. The filter_by_certification tool lets you query by tags like GOTS, OEKO-TEX, and PFAS-free across four product lines (certified activewear, clean supplements, GOTS apparel, low-tox home goods). No auth required. Runs on Cloudflare Workers at a custom domain. Pairs with a sibling scanner MCP (mcp-scan.lowtoxgear.com) that cross-references 21,000 Australian products by barcode and flags 237 chemical rules. Useful when you need programmatic access to a curated storefront filtered by ingredient certifications rather than manually scraping Shopify pages.
Two MCP servers for the Lowtoxgear ecosystem. Both live, no-auth, no API key needed — paste a URL into Claude.ai → Settings → Connectors, or call directly via JSON-RPC 2.0 POST.
| Server | Connect URL | Tools |
|---|---|---|
| Lowtoxgear Storefront | https://mcp.lowtoxgear.com/mcp | search_products, get_product, list_collections, filter_by_certification, get_policies |
| Lowtoxgear Scanner | https://mcp-scan.lowtoxgear.com/mcp | scan_barcode, get_catalog_stats, get_magnet_samples, submit_missing_product, get_resources |
Both registered under the com.lowtoxgear/* namespace (DNS-verified via lowtoxgear.com) in the Anthropic MCP Registry.
The Lowtoxgear brand is an Australian low-tox lifestyle e-commerce store spanning four collections:
The storefront MCP exposes the Shopify public catalogue with one brand-specific extension: filter_by_certification lets agents query by tags like GOTS, OEKO-TEX, PFAS-free, etc.
The Scanner is an independent Australian ingredient scanner for any consumer product. Live at scan.lowtoxgear.com:
The Scanner MCP is a thin wrapper around the existing scanner backend — it exposes the same data via the MCP JSON-RPC protocol so agents can query it programmatically.
{
"mcpServers": {
"lowtoxgear-storefront": { "url": "https://mcp.lowtoxgear.com/mcp" },
"lowtoxgear-scanner": { "url": "https://mcp-scan.lowtoxgear.com/mcp" }
}
}
Settings → Connectors → Add custom connector → paste either URL.
# Scan a barcode
curl -sS https://mcp-scan.lowtoxgear.com/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"scan_barcode","arguments":{"barcode":"9300605000018"}}}'
# Search the storefront
curl -sS https://mcp.lowtoxgear.com/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"search_products","arguments":{"query":"GOTS organic"}}}'
Both servers reference each other in their initialize and get_* responses:
get_policies returns a pointer to the Scanner (for chemical-safety analysis of items found in the catalogue).get_resources returns a pointer to the Storefront (for shopping the cleanest-in-class).This lets agents chain queries naturally: scan a barcode → if flagged, query the storefront for a cleaner alternative.
┌──────────────────────────┐
│ AI agent (Claude / etc) │
└────┬───────────────┬─────┘
│ JSON-RPC 2.0 │ JSON-RPC 2.0
▼ ▼
mcp.lowtoxgear.com/mcp mcp-scan.lowtoxgear.com/mcp
(storefront MCP Worker) (scanner MCP Worker)
│ │
│ Shopify │ scan.lowtoxgear.com/api/*
│ public JSON │ (existing scanner web app)
▼ ▼
lowtoxgear.com scan.lowtoxgear.com
(Shopify store) (D1: 21k AU products,
237 chemical rules)
Both MCP Workers run on Cloudflare Workers with their own custom domains. The Scanner backend (D1 database, chemical-rule engine, OCR ingestion) lives in a separate Worker we don't modify.
See PUBLISHING.md — one DNS verification on lowtoxgear.com unlocks both manifests under com.lowtoxgear/*.
MIT — see LICENSE.
Built by Lowtoxgear · Source for scanner data is independent + source-cited · Contact: founder@boolsai.ai