mcp-rona
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., "@mcp-ronasearch for DEWALT drills"
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.
mcp-rona
A Model Context Protocol server for RONA (rona.ca). It exposes RONA's catalogue — product search, product detail, online availability and a store finder — to MCP clients such as Claude and Cursor.
Unofficial. This project is not affiliated with, endorsed by, or sponsored by RONA inc. It reads publicly available endpoints of rona.ca for personal, noncommercial use. Respect RONA's terms of service and use responsibly.
Tools
Tool | Description |
| Product search / listings by keyword. Returns products (SKU, name, brand, model, rating, category, URL, image), total count, facets and sort options. Keywords that map to a category page fall back to a best-effort product list. |
| Full product card by SKU: name, brand, model, description, image, rating, barcode, category path, URL and online availability. |
| Online purchasability (inventory status) of a SKU. |
| Find stores nearest a Canadian postal code (geocoded) or to latitude/longitude — id, name, banner, address, phone, coordinates, distance (km), time zone, URL and opening hours. |
rona_search
Param | Type | Default | Notes |
| string | — | Search keyword (required). |
|
|
| Language for facet labels. |
|
|
| Sort order. |
| int ≥ 1 |
| 1-indexed page. |
| int (1–60) |
| Results per page. |
| string | — | Filter by a brand facet value, e.g. |
rona_product
Param | Type | Default | Notes |
| string | — | Product SKU / item number (required), e.g. |
|
|
| Response language. |
rona_store_availability
Param | Type | Default | Notes |
| string | — | Product SKU / item number (required). |
|
|
| Response language. |
rona_stores
Param | Type | Default | Notes |
| string | — | Canadian postal code, e.g. |
| number | — | Alternative to |
|
|
| Language for store URLs. |
| int (1–50) |
| Max stores to return. |
The store locator geosorts by coordinates only, so a postal code is first geocoded via
api.zippopotam.us(free, no key). Distance is reported by RONA's API, with a local haversine fallback.
Related MCP server: SlimWeb Client MCP
A note on prices and store stock
RONA does not expose unit prices or real-time per-store stock (quantities, aisle/bay) through its public APIs:
Prices are guest-gated (the price endpoint returns no value without a session).
Real-time per-store inventory sits behind a DataDome JavaScript challenge that a headless client cannot solve.
So price is reported as null, and availability is limited to online
purchasability (Available / Unavailable). Search, product detail and the
store finder are fully functional.
How it talks to RONA
rona.ca is behind Cloudflare, which gates requests on both the HTTP version
and the client's TLS (JA3) fingerprint. Node's native HTTP stack (fetch/undici)
gets 403; only curl --http2 is allowlisted, so every request shells out to
curl. No cookies are required for the public endpoints used here.
Surface | Host | Used for |
Constructor.io |
| search, product lookup |
App API (BFF) |
| store finder |
WebSphere Commerce REST |
| online availability |
Requirement: curl with HTTP/2 support must be on PATH (standard on macOS
and most Linux distros).
Build & run
npm install
npm run build
npm start # runs the MCP server on stdioQuick smoke test of the search layer:
node --input-type=module -e 'import {search} from "./dist/search.js"; console.log(await search({query:"drill", pageSize:3}))'Inspect with the MCP Inspector:
npm run inspectConnecting a client
Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json),
pointing at the built entrypoint:
{
"mcpServers": {
"rona": {
"command": "node",
"args": ["/absolute/path/to/mcp_rona/dist/index.js"]
}
}
}Project layout
src/
index.ts MCP server + tool registration (stdio)
rona.ts curl --http2 transport for rona.ca + Constructor.io
search.ts rona_search (Constructor.io search + category-redirect fallback)
product.ts rona_product + rona_store_availability (catalogue + WCS availability)
stores.ts rona_stores (postal-code geocode → store locator)License
PolyForm Noncommercial License 1.0.0 — free to use, modify and share for noncommercial purposes. Commercial use requires a separate license from the author.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/sstepanovvl/mcp_rona'
If you have feedback or need assistance with the MCP directory API, please join our Discord server