rangeview-mcp
Provides read-only access to the Rangeview Sports product catalog via the WooCommerce Store API. Enables searching products with filters (category, caliber, brand, price, stock, sale), retrieving full product details, listing categories and filter attributes, and bulk availability checks. Optimized to minimize token usage and handle catalog quirks like test products and price-on-request items.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@rangeview-mcpshow me 6.5 Creedmoor rifles under $2000"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
rangeview-mcp
MCP server for read-only access to the Rangeview Sports product catalog — ~5,600 products across firearms, ammunition, optics, reloading and accessories.
Backed by the store's public WooCommerce Store API. No credentials required. Read-only by design: nothing in this server can add to a cart, place an order, or write anything.
Install
git clone https://github.com/IamMichael23/rangeview-mcp.git
cd rangeview-mcp
npm install && npm run buildRelated MCP server: mcp-plu-upc
Use it with Codex
Add to ~/.codex/config.toml:
[mcp_servers.rangeview]
command = "node"
args = ["/absolute/path/to/rangeview-mcp/dist/index.js"]Use it with Claude Code
claude mcp add rangeview -- node /absolute/path/to/rangeview-mcp/dist/index.jsOr commit a .mcp.json in your project to share it with collaborators:
{
"mcpServers": {
"rangeview": {
"command": "node",
"args": ["/absolute/path/to/rangeview-mcp/dist/index.js"]
}
}
}Tools
Tool | Purpose |
| Free-text + category, caliber, brand, price, stock and sale filters |
| Full detail for one product by id, slug, or SKU |
| Walk the 376-category tree |
| Discover the 83 filterable attributes and their valid values |
| Bulk price/stock lookup for up to 20 items |
"What bolt-action rifles in 6.5 Creedmoor do they have in stock under $2000?"
"Is SKU 20260728001 still available?"
"What calibers do they carry the most of?"Two problems this server exists to solve
Anything that just proxies the Store API straight through will get both of these wrong.
1. A raw product is ~1,300 tokens, and 81% of it is dead weight
Measured against a live product:
Field | Share of payload | Needed in a search result? |
| 44.1% | No — detail view only |
| 15.8% | No — one URL at most |
| 7.4% | Never |
| 6.3% | Never — this server is read-only |
| 2.6% | No — raw cents is enough |
| 5.1% | Never |
So results come back in two shapes: a compact projection for search (~340 bytes / ~85 tokens) and a full shape only from get_product, with the description HTML-stripped and truncated. That is a ~15x reduction, and it is the difference between 50 results fitting in context and blowing it out. Every response also carries total_matches, page and total_pages so a model paginates deliberately instead of asking for everything.
2. Attribute filters take term IDs, and this catalog's terms are dirty
The Store API filters on term_id, never on names. And one cartridge is spelled many ways:
.223 | .223 Rem | 223 Rem | 223 Remington | .223 Rem/5.56 NATO | 5.56×45mm NATOInch marks arrive as two different entities for the same value — 6.5 Creedmoor/20” and 6.5 Creedmoor/20″.
Picking the single best-matching term returns 126 products for .223. ORing the whole family returns 138. So resolution deliberately fans out — you pass caliber: "223" and the server expands it to every term in the family and joins the IDs, which the Store API treats as OR. The response reports the expansion in notes.
The matching rule that makes this safe is a domain distinction: in cartridge naming a slash means "chambers both" (.223 Rem/5.56 NATO) while a hyphen means "wildcat built on that parent case" — a different cartridge that will not chamber. So 6mm-223, .17-223 and 7mm-223 Ingram are correctly excluded from a .223 search even though all three contain the string "223".
Catalog hygiene
Two quirks of the live store are handled by default, because both produce confidently wrong answers otherwise:
15 internal
Shipping test product #Nrows are live at $0.01. Without filtering, "what's the cheapest item?" returns a QA artifact. They are hidden by default; passinclude_test_products: trueto see them. (The cheapest genuine item is a $0.49 pack of earplugs.)$0.00means "call for price", not free. Special orders such as a Beretta 693 shotgun list at zero. These are reported asprice_on_request: truewith anullprice, so a model never announces a $2,775 shotgun is free.
Also worth knowing: only ~34% of the catalog (1,923 of 5,602) is in stock. Pass in_stock_only: true for buyable items.
Configuration
All optional:
Variable | Default | Purpose |
|
| Point at another WooCommerce store |
|
| Per-request timeout |
|
| Retries on 429/5xx with backoff |
|
| Category/attribute cache lifetime |
|
| Description truncation in |
Tests
npm test # all 35
npm run test:unit # 22, offline
npm run test:integration # 13, hits the live APISet RANGEVIEW_SKIP_INTEGRATION=1 to skip the network tests.
Notes
This reads a public, unauthenticated endpoint that the store already serves to every browser, and it is rate-limit-friendly (single-page queries, cached taxonomy, backoff on 429). It is not affiliated with or endorsed by Rangeview Sports. Product data, availability and pricing belong to them and change without notice — confirm anything that matters on the site itself.
MIT licensed.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceRead-only MCP server for Raygister, enabling AI assistants to browse construction projects, lots, specifications, and locations via natural language.Last updated623MIT
- Flicense-qualityBmaintenanceMCP server for looking up product information by UPC, EAN, GTIN barcodes and PLU produce codes.Last updated
- Alicense-qualityCmaintenanceRead-only MCP server for IKEA product search and in-store stock lookup.Last updated301MIT
- Alicense-qualityDmaintenanceMCP server for read-only LDAP directory operations, enabling search, entry retrieval, schema browsing, and comparison via natural language.Last updatedMIT
Related MCP Connectors
Read-only MCP server for searching Japan government procurement bid information from the KKJ portal.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Federated commerce search across independent WooCommerce merchants. Keyless, read-only MCP server.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IamMichael23/rangeview-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server