AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Lowtoxgear Scanner

mcp-lowtoxgear-lowtoxgear-mcp · by lowtoxgear

Australian ingredient scanner MCP — 21k+ AU products, 237 chemical rules, 17 condition tags.

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add mcp-lowtoxgear-lowtoxgear-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v1.0.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v1.0.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-lowtoxgear-lowtoxgear-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Lowtoxgear Scanner? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Lowtoxgear — MCP server suite

[](https://modelcontextprotocol.io) [](LICENSE) [](https://lowtoxgear.com)

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](./lowtoxgear-storefront/) | https://mcp.lowtoxgear.com/mcp | search_products, get_product, list_collections, filter_by_certification, get_policies | | [Lowtoxgear Scanner](./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_policies returns a pointer to the Scanner (for chemical-safety analysis of items found in the catalogue).
  • The Scanner's 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.


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](./PUBLISHING.md) — one DNS verification on lowtoxgear.com unlocks both manifests under com.lowtoxgear/*.


License

MIT — see [LICENSE](LICENSE).

Built by Lowtoxgear · Source for scanner data is independent + source-cited · Contact: [founder@boolsai.ai](mailto:founder@boolsai.ai)

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v1.0.0 Imported from the upstream source.