streamable-httpMITupdated 3mo ago
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.
What can you do with Lowtoxgear Scanner?
Lowtoxgear โ MCP server suite
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.
What they do
Lowtoxgear Storefront โ shop the catalogue
The Lowtoxgear brand is an Australian low-tox lifestyle e-commerce store spanning four collections:
- Certified Activewear โ clothing built without PFAS, fluorocarbons, or synthetic finishes
- Clean Supplements โ Australian-sourced supplement products with third-party testing
- GOTS Certified โ Global Organic Textile Standard apparel
- Low-Tox Home Products โ household items audited for clean ingredients
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.
Lowtoxgear Scanner โ analyse anything by barcode
The Scanner is an independent Australian ingredient scanner for any consumer product. Live at scan.lowtoxgear.com:
- 21,000+ Australian product pages indexed by barcode (EAN/UPC/JAN)
- 237 source-cited chemical rules โ fragrance allergens, EU-banned additives, EDCs, phthalates, PFAS, formaldehyde releasers, parabens, preservatives, and more
- 17 condition-specific flag escalations โ MCAS, eczema, PCOS, fertility, pregnancy, fibromyalgia, POTS, IBS, Hashimoto's, fragrance sensitivity, autism, ADHD, asthma, autoimmune, endometriosis, lyme, chronic fatigue
- Six magnet guides of strict-clean shortlists by condition (eczema-safe personal care, mineral-only sunscreens, pregnancy-safe beauty, clean shampoos, etc.)
- No sponsored placement โ independent, source-cited
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.
Install (both)
Claude Desktop / Claude Code / Cursor
{
"mcpServers": {
"lowtoxgear-storefront": { "url": "https://mcp.lowtoxgear.com/mcp" },
"lowtoxgear-scanner": { "url": "https://mcp-scan.lowtoxgear.com/mcp" }
}
}
ChatGPT / Claude.ai Custom Connectors
Settings โ Connectors โ Add custom connector โ paste either URL.
Test from a terminal
# 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"}}}'
Cross-discovery
Both servers reference each other in their initialize and get_* responses:
- The Storefront's
get_policiesreturns a pointer to the Scanner (for chemical-safety analysis of items found in the catalogue). - The Scanner's
get_resourcesreturns 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.
Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ 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.
Publishing to the MCP Registry
See PUBLISHING.md โ one DNS verification on lowtoxgear.com unlocks both manifests under com.lowtoxgear/*.
License
MIT โ see LICENSE.
Built by Lowtoxgear ยท Source for scanner data is independent + source-cited ยท Contact: founder@boolsai.ai
Install
Add Lowtoxgear Scanner to your client. Pick the one you use.
claude mcp add --transport http lowtoxgear-scanner https://mcp-scan.lowtoxgear.com/mcpcodex mcp add lowtoxgear-scanner --url https://mcp-scan.lowtoxgear.com/mcp{
"mcpServers": {
"lowtoxgear-scanner": {
"url": "https://mcp-scan.lowtoxgear.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"lowtoxgear-scanner": {
"type": "http",
"url": "https://mcp-scan.lowtoxgear.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"lowtoxgear-scanner": {
"url": "https://mcp-scan.lowtoxgear.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"lowtoxgear-scanner": {
"serverUrl": "https://mcp-scan.lowtoxgear.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance13/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 104 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | May 19, 2026 |