mcp_canadiantire
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_canadiantiresearch for camping chairs"
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-canadiantire
A Model Context Protocol server for Canadian Tire (canadiantire.ca). It exposes the store's catalogue — product search, product detail, store-level stock and a store finder — to MCP clients such as Claude and Cursor.
Unofficial. This project is not affiliated with, endorsed by, or sponsored by Canadian Tire Corporation. It reads publicly available endpoints of canadiantire.ca for personal, noncommercial use. Respect Canadian Tire's terms of service and use responsibly.
Tools
Tool | Description |
| Product search / listings by keyword. Returns products (SKU, name, brand, model, price + sale price, rating, in-store & online stock, URL, image), total count, facets and sort options. Follows category redirects automatically. |
| Full product card by SKU: name, brand, model, description, features, images, rating/reviews, warranty, categories, specifications, and per-variant price + in-store stock with shelf/aisle location, online stock and fulfillment options. |
| In-store stock of a SKU across nearby stores, sorted in-stock first then nearest. Per store: name, address, phone, coordinates, distance, stock quantity, shelf/aisle location, pickup availability. Plus online stock. |
| Find stores nearest to a postal code or coordinates (distance-sorted with |
ct_search
Param | Type | Default | Notes |
| string | — | Search keyword (required). |
| string |
| Store id for store-specific stock/pricing. |
|
|
| Response language. |
|
|
| Sort order. |
| int |
| 1-indexed page. |
| int (1–100) |
| Results per page. |
ct_product
Param | Type | Default | Notes |
| string | — | Product code (required), e.g. |
| string | — | Postal code, e.g. |
| string |
| Store id for store-specific price/stock/shelf. Override default with |
|
|
| Response language. |
ct_store_availability
Param | Type | Default | Notes |
| string | — | Product code (required). |
| string | — | Postal code; nearby stores are taken around it (overrides |
| string |
| Reference store; nearby stores are taken around it. |
|
|
| Response language. |
| int (1–25) |
| Max number of stores to check. |
Default store: product/availability tools default to store
676(Edmonton Windermere, AB). SetCT_DEFAULT_STORE, or passstoreId/postalCode, to use your local store. Usect_storeswith a postal code to find the right store id.
ct_stores
Param | Type | Default | Notes |
| string | — | Canadian postal code, e.g. |
| number | — | Alternative to |
|
|
| Response language. |
| int (1–50) |
| Max stores to return. |
The store API geosorts by coordinates only (no postal-code search), so a postal code is first geocoded via
api.zippopotam.us(free, no key).distanceKmis returned by Canadian Tire.
Related MCP server: market-fiyatlari-mcp-server
How it talks to Canadian Tire
canadiantire.ca/api/* is gated by an Azure API Management subscription key — the
ocp-apim-subscription-key header. With that key, requests succeed over a plain Node
fetch: no cookies, no Akamai _abck, and no TLS (JA3) fingerprinting to work around
(unlike some other retailers). So this server talks to the API directly with fetch —
no curl subprocess required.
The key is a public client key embedded in the site's JavaScript. If Canadian Tire rotates
it (calls start returning 401), set a new one via the CT_SUBSCRIPTION_KEY env var —
re-scrape it from the ocp-apim-subscription-key request header of any search XHR on
canadiantire.ca.
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": {
"canadiantire": {
"command": "node",
"args": ["/absolute/path/to/mcp_canadiantire/dist/index.js"],
"env": {
"CT_DEFAULT_STORE": "676",
"CT_SUBSCRIPTION_KEY": "<only if the bundled key stops working>"
}
}
}
}Both env vars are optional:
CT_DEFAULT_STORE— default store id for the product/availability tools (defaults to676, Edmonton Windermere, AB).CT_SUBSCRIPTION_KEY— overrides the bundled Azure APIM subscription key. See below.
About the subscription key
Every canadiantire.ca/api/* request needs an ocp-apim-subscription-key header. This is
a public client key embedded in the site's own JavaScript — not a personal secret — and
this server ships with a working value baked in, so it works out of the box with no setup.
If Canadian Tire rotates the key (requests suddenly start returning HTTP 401), grab a
fresh one and pass it via CT_SUBSCRIPTION_KEY:
Open https://www.canadiantire.ca and run any search.
In the browser dev tools Network tab, find a request to
/api/v1/search/v2/search.Copy the value of its
ocp-apim-subscription-keyrequest header.Set it as
CT_SUBSCRIPTION_KEY(env var or the client configenvblock above).
Project layout
src/
index.ts MCP server + tool registration (stdio)
ct.ts fetch transport for canadiantire.ca (APIM key + headers)
search.ts ct_search implementation + response mapping
product.ts ct_product + ct_store_availability (productFamily + PriceAvailability APIs)
stores.ts ct_stores (store finder + postal-code geocode → nearest)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_canadiantire'
If you have feedback or need assistance with the MCP directory API, please join our Discord server