Superstore MCP Server
Enables interaction with Real Canadian Superstore to extract order history, browse products, and export purchase data. Supports authentication via bearer token and provides comprehensive order management and product discovery capabilities.
README
Superstore MCP Server
An MCP server for Real Canadian Superstore that extracts orders and product data with authentication.
Features
- Order Management: Full order history with item details, dates, prices, images
- DirectAuth: Fast bearer token authentication (no browser needed)
- Data Export: Export orders to CSV or JSON for analysis
- Product Discovery: Browse categories and search products
- Web Content: Fetch and parse web pages
Installation
Quick Install to Cursor
Note: Make sure Cursor is running before clicking the install button.
Manual Installation
# Run directly with npx
npx -y superstore-mcp@latest
# Or clone from GitHub
git clone https://github.com/ai-protocols/superstore-mcp.git
cd superstore-mcp
npm install
npm run build
Configuration
Add to your mcp.json:
{
"superstore-mcp": {
"command": "npx",
"args": ["-y", "superstore-mcp@latest"],
"env": {
"SUPERSTORE_BEARER_TOKEN": "your-token-here"
}
}
}
Getting Your Bearer Token
- Log in to https://www.realcanadiansuperstore.ca
- Open DevTools (F12) → Application → Cookies → www.realcanadiansuperstore.ca
- Find
AccessTokencookie and copy its value (starts witheyJ) - Paste into
SUPERSTORE_BEARER_TOKEN
Tokens expire after ~1 hour. Refresh by copying a new token from your browser.
Available Tools
Authentication
login - Authenticate session
{}
logout - End session
{}
check_auth_status - Check authentication state
{}
Orders
get_orders - Get order history
{
"limit": 10,
"offset": 0
}
get_order_details - Get full order with items
{
"order_id": "531900014110869"
}
get_recent_orders - Filter orders by date
{
"days": 90
}
export_orders_csv - Export to CSV
{
"include_items": true,
"filepath": "./orders.csv"
}
export_orders_json - Export to JSON
{
"include_items": true,
"filepath": "./orders.json"
}
Products
get_categories - Get all categories
{}
get_products - Get products from categories
{
"category_ids": ["28251"],
"max_pages_per_category": 1
}
get_category - Get single category
{
"category_id": "28251"
}
get_product - Search for product
{
"category_id": "28251",
"product_name": "bread"
}
search_products - Search products (alias)
{
"category_id": "28251",
"product_name": "milk"
}
get_product_details - Get product details from URL
{
"product_url": "https://www.realcanadiansuperstore.ca/..."
}
get_product_details_by_name - Search and get details
{
"category_id": "28251",
"product_name": "butter"
}
Web Utilities
fetch_txt - Fetch web page as text
{
"url": "https://www.realcanadiansuperstore.ca"
}
parse_sitemap - Parse sitemap
{
"sitemap_url": "https://www.realcanadiansuperstore.ca/sitemap_index.xml"
}
Example Usage
Export All Orders
// Login
await mcp.call("login", {});
// Export with full item details
await mcp.call("export_orders_csv", {
"include_items": true,
});
Analyze Spending
// Get recent orders
const orders = await mcp.call("get_recent_orders", { "days": 90 });
// Get details for each
for (const order of orders.orders) {
const details = await mcp.call("get_order_details", {
"order_id": order.id,
});
console.log(`${order.id}: ${details.items.length} items`);
}
Architecture
- DirectAuth: Uses bearer token from browser (recommended)
- API Integration: Calls
api.pcexpress.ca/pcx-bffwith proper headers - Fallback Mode: Puppeteer browser automation if no bearer token provided
- HTML Parsing: JSDOM for product pages
Documentation
License
MIT
Disclaimer
Unofficial tool. Not affiliated with Loblaw Companies or Real Canadian Superstore. Use responsibly.
Repository: https://github.com/ai-protocols/superstore-mcp
Version: 2.0.0
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.