streamable-httpupdated 1mo ago
A dedicated MCP and REST service that searches grocery retailers directly and returns reviewable product links. It starts with:
What can you do with Grocery MCP?
Grocery MCP
A dedicated MCP and REST service that searches grocery retailers directly and returns reviewable product links. It starts with:
- Kettle Range Meat Co. — Milwaukee and Elm Grove
- Outpost Natural Foods — Capitol Drive, State Street, Bay View, and Mequon
This service does not add products to carts, place orders, store retailer
credentials, or handle payment. Every response explicitly reports
cart_prefilled: false; the user opens the links, adds products, and checks out
on the retailer's own site.
Setup
python3.12 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
Run
python -m grocery_mcp.server
python -m grocery_mcp.server --http
HTTP endpoints:
- MCP:
http://localhost:8080/mcp - Health:
http://localhost:8080/health - OpenAPI:
http://localhost:8080/docs - Retailers:
http://localhost:8080/v1/retailers - Product search:
http://localhost:8080/v1/products/search - Handoffs:
POST http://localhost:8080/v1/handoffs
When DATABASE_URL is configured, handoffs and OAuth dynamic client
registrations are persisted in PostgreSQL. Without it, local development uses
process memory.
MCP tools
find_grocery_retailerssearch_grocery_productscreate_grocery_handoffget_grocery_handoffcreate_grocery_order_templatelist_grocery_order_templatescreate_handoff_from_template
Example handoff input:
{
"retailer": "kettle_range",
"location_id": "milwaukee",
"items": [
{"name": "boneless chicken thighs", "quantity": 2, "unit": "lb"},
{"name": "ground beef", "quantity": 1, "unit": "lb"}
]
}
Data behavior
Product names, prices, availability, and links come from each retailer's public customer storefront at request time. These storefront interfaces are not formal partner APIs and can change without notice. Responses include match confidence, alternatives, and observation timestamps so clients can make this uncertainty visible.
Matching requires strong token overlap, rejects obvious cross-category substitutions, and prefers available products. If no safe result exists, the item is explicitly unmatched rather than replaced with a loosely related item.
Reusable templates persist the retailer, location, and normalized grocery items. Running a template always performs fresh catalog searches and creates a new review-only handoff.
Tests
ruff check .
pytest
Install
Add Grocery MCP to your client. Pick the one you use.
claude mcp add --transport http grocery-mcp https://grocery-mcp-production.up.railway.app/mcpcodex mcp add grocery-mcp --url https://grocery-mcp-production.up.railway.app/mcp{
"mcpServers": {
"grocery-mcp": {
"url": "https://grocery-mcp-production.up.railway.app/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"grocery-mcp": {
"type": "http",
"url": "https://grocery-mcp-production.up.railway.app/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"grocery-mcp": {
"url": "https://grocery-mcp-production.up.railway.app/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"grocery-mcp": {
"serverUrl": "https://grocery-mcp-production.up.railway.app/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 25 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Aug 4, 2026 |