MCP server for the Tuma250 grocery site (Kigali, Rwanda)
Project description
tuma250-mcp
An MCP server for the Tuma 250 grocery site (Kigali, Rwanda).
Gives any MCP-compatible AI client (Cursor, Claude Desktop, etc.) the ability to search products, manage a shopping cart, and browse order history on Tuma250 — using a headless Playwright browser under the hood.
Example uses
Imported as MCP server in Perplexity (or any other MCP-compatible client)
Imported as a skill in OpenClaw
The skill definition can be copied from skills/tuma250/SKILL.md (requires the mcporter skill to be enabled, and the MCP server added to its configuration)
Tools
| Tool | Description |
|---|---|
login |
Authenticate and persist the browser session |
search_products |
Search for products by keyword |
get_product_variations |
List available variants (size/weight) for a variable product |
add_to_cart |
Add a product (or specific variant) to the cart |
get_cart |
Retrieve cart contents with full cost breakdown |
list_recent_orders |
List recent orders from My Account |
get_order_details |
Fetch line items for a specific order |
Prerequisites
Playwright with one headless browser
npm i -g playwright
playwright install chromium
Configuration
The server reads credentials from environment variables (or a .env file):
TUMA250_BASE_URL=https://tuma250.com
TUMA250_USERNAME=your-email@example.com
TUMA250_PASSWORD=your-password
# Optional
TUMA250_SESSION_FILE=.tuma250_session.json # persists login between runs
TUMA250_DEBUG=false # set true for headed browser
Usage
Cursor / Claude Desktop
Add to ~/.cursor/mcp.json / ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"tuma250": {
"command": "uvx",
"args": ["tuma250-mcp"],
"env": {
"TUMA250_BASE_URL": "https://tuma250.com",
"TUMA250_USERNAME": "your-email@example.com",
"TUMA250_PASSWORD": "your-password"
}
}
}
}
Direct (stdio)
pip install tuma250-mcp
TUMA250_USERNAME=you@example.com TUMA250_PASSWORD=secret tuma250-mcp
Session persistence
After the first successful login, the browser session (cookies) is saved to TUMA250_SESSION_FILE (default: .tuma250_session.json). Subsequent runs reuse the saved session and skip the login step entirely.
Variable products
Some products on Tuma250 require a size/weight selection before they can be added to the cart. Pass the product slug (from search_products or get_order_details) and optionally variation_attributes:
1. search_products("fresh carrots") → returns slug in each result
2. get_product_variations(product_url) → lists 250g / 500g / 1kg variants
3. add_to_cart(product_slug, quantity=1, variation_attributes={"attribute_quantity": "500g"})
Development
# Clone and setup
uv venv
source .venv/bin/activate # or: .venv\Scripts\activate on Windows
uv pip install -e ".[dev]"
playwright install chromium
# Run tests
pytest -v
Copy config-example.env to .env and fill in your Tuma250 credentials before running tests or the server locally.
To test from command line, you may use mcporter, e.g.:
npx mcporter call --stdio "uv run tuma250-mcp" get_cart
npx mcporter call --stdio "uv run tuma250-mcp" 'tuma250.get_order_details(order_id: "193457")'
npx mcporter call --stdio "uv run tuma250-mcp" 'tuma250.add_to_cart(product_slug: "ripe-mango-fruit-1kg")'
npx mcporter call --stdio "uv run tuma250-mcp" add_to_cart --args '{"product_slug": "viande-hachee-de-bouef-ordinaire-regular-ground-beef", "variation_attributes": {"attribute_weight":"1kg"}}'
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tuma250_mcp-0.1.6.tar.gz.
File metadata
- Download URL: tuma250_mcp-0.1.6.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c73baf268d5b4a6305f7b76ea08219be947748b3a489dfb5e646a144b62a3889
|
|
| MD5 |
991d0d5537309db001b229e5b6ce9fdc
|
|
| BLAKE2b-256 |
2e9476b5a3064ee692ba64bab5a0c7155cae4c89b5e0f0dcb016042fb2c78a45
|
File details
Details for the file tuma250_mcp-0.1.6-py3-none-any.whl.
File metadata
- Download URL: tuma250_mcp-0.1.6-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcc3878236ddffb8cbfc03bfa875b1abda92adf3ec91b8deeae5d63c91e0bddc
|
|
| MD5 |
7ca29aa3101c9d589147baf822dc046e
|
|
| BLAKE2b-256 |
c1ca0fee6e740b8478b5c14eca7e80e20c5ae62390425b800b18026d522c43b8
|