OurGroceries MCP
Click on "Deploy 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., "@OurGroceries MCPAdd milk to my grocery list"
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.
OurGroceries MCP
An unofficial Model Context Protocol (MCP) server for an OurGroceries account. It relies on an unofficial API client; upstream behavior, availability, and compatibility can change without notice. Review every result and verify important changes in OurGroceries.
The Streamable HTTP server hasno built-in application authentication. Never expose it directly to the internet: anyone who can reach it can use the configured grocery account. Bind it to localhost, or put it behind an authenticated, trusted tunnel or reverse proxy that enforces authentication before forwarding requests.
Prerequisites
An OurGroceries account and its credentials.
For a source install: uv and Python 3.12 or later.
For the container option: Docker.
An MCP client for stdio or Streamable HTTP.
The server reads OURGROCERIES_EMAIL and OURGROCERIES_PASSWORD from its process environment. .env is a local template, not an automatically loaded configuration file. Keep it private and never commit it.
Related MCP server: Unofficial AnyList MCP Server
Install and configure
Source with uv
git clone https://github.com/OriginalByteMe/our-groceries-mcp.git
cd our-groceries-mcp
cp .env.example .env
# Edit .env locally; do not commit it.
uv sync --lockedSet placeholders in .env only on your machine:
OURGROCERIES_EMAIL=""
OURGROCERIES_PASSWORD=""For a shell-launched server, export the file first:
set -a
. ./.env
set +aDocker
The image starts the Streamable HTTP transport. Build it and publish the port only on localhost:
docker build -t our-groceries-mcp .
docker run --rm --env-file .env -p 127.0.0.1:8000:8000 our-groceries-mcpIts MCP endpoint is http://127.0.0.1:8000/mcp. This is an MCP endpoint, not a browser UI. If remote access is necessary, retain the localhost binding and use an authenticated trusted tunnel or reverse proxy; do not forward the port unauthenticated.
Install the agent skill
For agents that support Vercel Skills, install the repository skill:
npx skills add OriginalByteMe/our-groceries-mcp --skill our-groceries-mcpThis installs guidance, not credentials. Configure credentials locally in the MCP client or environment.
Connect an MCP client
Stdio (recommended)
After uv sync --locked, add this JSON to your client's MCP server configuration. Replace the absolute checkout path and placeholders locally; do not put real credentials in a shared config file.
{
"mcpServers": {
"our-groceries": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/our-groceries-mcp",
"--locked",
"our-groceries-mcp"
],
"env": {
"OURGROCERIES_EMAIL": "",
"OURGROCERIES_PASSWORD": ""
}
}
}
}Stdio keeps the server local to the client process and is the safest default.
Streamable HTTP
For a source checkout, after exporting the environment variables, run:
uv run --locked our-groceries-mcp \
--transport streamable-http \
--host 127.0.0.1 \
--port 8000Connect an MCP client to http://127.0.0.1:8000/mcp. The endpoint has no HTTP authentication. Do not use 0.0.0.0 or a public host unless an authenticated trusted tunnel or reverse proxy protects every request.
Read-only smoke check
From a configured source checkout, this launches the server over stdio, initializes MCP, and calls the real read-only list_grocery_lists tool. It prints no grocery-list contents.
set -a
. ./.env
set +a
uv run --locked python - <<'PY'
import asyncio
import os
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
async def main() -> None:
server = StdioServerParameters(
command="uv",
args=["run", "--locked", "our-groceries-mcp"],
env=dict(os.environ),
)
async with stdio_client(server) as (read, write):
async with ClientSession(read, write) as session:
await session.initialize()
result = await session.call_tool("list_grocery_lists", {})
if result.isError:
raise RuntimeError("list_grocery_lists failed")
print("Read-only MCP smoke check passed.")
asyncio.run(main())
PYThis contacts the live OurGroceries account. Do not run it with credentials you do not intend to use.
Tools and confirmation
List and item names are resolved by case-insensitive exact match. Resolve ambiguity with list_grocery_lists or get_items before a mutation.
Tool | Parameters | Behavior |
| none | Read available lists. |
|
| Read items in one list. |
|
| Adds immediately; it has no confirmation flag. Ask before calling it. |
|
| Returns a preview by default. Marking complete requires |
|
| Returns a preview by default. Permanent removal requires |
|
| Returns a preview by default. Moving requires |
For complete_item, remove_item, and move_item, first call with the default confirm: false, show the preview, and only call again with confirm: true after explicit user approval. add_item is an immediate write, so obtain approval before the first call.
move_item is not atomic: it adds the item to the destination, then removes it from the source. If removal fails, the item can exist in both lists. Inspect both lists before retrying so a retry does not create another duplicate.
Troubleshooting
Credentials are not configured: pass both environment variables to the server process;
.envalone is not loaded automatically.Authentication failed or requests fail: verify the account credentials and network, then retry later. This is an unofficial integration and upstream API changes can break it.
List or item not found / ambiguous: use the read tools and provide one case-insensitive exact name; rename duplicate lists or items in OurGroceries if needed.
Cannot connect over HTTP: ensure the server is running, use
/mcp(not/), and keep the host/port local unless an authenticated proxy or tunnel is in place.A move reports partial failure: check both source and destination lists manually before deciding whether to remove, move, or retry the item.
Development and testing
Install development dependencies and run the offline test suite with the lockfile:
uv sync --locked --all-groups
uv run --locked pytest -m "not live"Tests marked live require a deliberately configured live account and are excluded by default. Do not add credentials to test output, fixtures, or committed files.
Security
See SECURITY.md before enabling Streamable HTTP. In particular, direct unauthenticated internet exposure grants grocery-account access to callers.
Available Tools
6 toolsadd_itemB
Immediately add an item to a grocery list, optionally with quantity and note.
| Name | Required | Description | Default |
|---|---|---|---|
| item | Yes | ||
| note | No | ||
| quantity | No | ||
| list_name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It states the mutation (add) and optional fields, but doesn't describe side effects, error behavior, idempotency, or what happens if the list doesn't exist. For a mutation tool with empty annotations, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the action ('Immediately add an item'). Every word earns its place, with no unnecessary detail or repetition of schema information. It's appropriately sized for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple and an output schema exists, so return values don't need to be explained. However, the description lacks behavioral context such as duplicate handling, list existence requirements, or error behavior. With empty annotations and sparse schema, this is barely adequate for a low-complexity mutation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It mentions quantity and note as optional, which aligns with the schema defaults, but it doesn't explain list_name or item semantics beyond their obvious names. The required parameters are not described further, providing only partial compensation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('add an item to a grocery list') with a specific verb and resource. It doesn't explicitly name alternatives, but the action verb distinguishes it from sibling tools like complete_item, remove_item, and move_item. Overall, it's clear but lacks explicit sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is used when adding an item to a grocery list, but it doesn't provide explicit guidance on when to use it versus alternatives (e.g., when to use get_items or remove_item). It also doesn't mention prerequisites like whether the list must already exist. This is implied usage without clear exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
complete_itemA
Preview or, with confirmation, mark a matching grocery item as complete.
| Name | Required | Description | Default |
|---|---|---|---|
| item | Yes | ||
| confirm | No | ||
| list_name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden for behavioral disclosure. It does reveal the key default behavior (confirm defaults to false, so it previews unless confirmed) and that it marks an item complete. However, it omits details about matching semantics, list-scoping, side effects on related data, or potential errors. This is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single compact sentence that front-loads the core action and the preview/confirm decision. Every word earns its place, and it is well-structured for quick parsing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given three parameters with zero schema descriptions, the description leaves key semantics unexplained (especially list_name and what 'matching' means). While an output schema exists, the tool lacks annotations and usage guidance, resulting in an incomplete picture. The description covers the action but not the operational context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, yet the description adds no explicit explanations for item, list_name, or confirm. It only implies confirm via 'with confirmation' and the item via 'matching grocery item'. The list_name parameter remains completely unexplained, and the matching mechanism is vague. The description fails to compensate for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb+resource ('mark a matching grocery item as complete') and clearly distinguishes this from siblings like add_item, remove_item, and move_item. It also highlights the preview/confirmation dual behavior, making the tool's core purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly establishes when to use it: to complete an item rather than add, remove, or move it. It also provides a workflow hint ('Preview or, with confirmation, mark'), which guides the agent to preview first unless confirm=true. However, it does not explicitly name alternatives or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_itemsA
Return the items in a grocery list selected by case-insensitive exact name.
| Name | Required | Description | Default |
|---|---|---|---|
| list_name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It reveals the key behavioral trait of case-insensitive exact matching, which is essential context. The description does not mention error cases (e.g., list not found), but for a simple read operation this is a minor omission.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that immediately states the action and its scope. There is no redundant information, and it is front-loaded with the purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one parameter, and the description explains how that parameter is used. An output schema exists to define the return shape, so the description does not need to elaborate on return values. It is sufficiently complete for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides no description for the only parameter (list_name), and schema coverage is 0%. The description adds valuable meaning by clarifying that the name must be case-insensitive and exact, fully covering the parameter's semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool returns items from a grocery list and specifies the selection criterion (case-insensitive exact name). It is distinct from sibling tools that add, complete, remove, or move items, and from list_grocery_lists which lists the lists themselves.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is given on when to use this tool versus alternatives. However, the description implies that it should be used when you need the items of a specific list, and the case-insensitive exact name requirement provides clear input expectations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_grocery_listsA
List grocery lists available in the configured OurGroceries account.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden for behavioral disclosure. It implies a read-only operation but does not explicitly state that it has no side effects. It does add context about the configured account, which is useful, but lacks details on errors, pagination, or sorting.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no wasted words. It is front-loaded with the action and subject, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, zero-parameter tool with an output schema, the description is largely sufficient. It explains what the tool does and notes the account context. It could be more complete by hinting at the relationship with sibling tools (e.g., 'use get_items to retrieve items within a list'), but this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description does not need to elaborate on parameters since the schema already covers all (none). The description adds value by clarifying the scope of the list operation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'List' with a clear resource 'grocery lists' and scope 'in the configured OurGroceries account'. It effectively distinguishes this tool from sibling tools like get_items and add_item, which operate on individual items rather than lists.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage (e.g., to see available lists before operating on items) but does not explicitly state when to use this tool versus alternatives or any exclusions. There is no mention of sibling tools or prerequisites beyond 'configured account'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
move_itemA
Preview or, with confirmation, move an item between grocery lists.
| Name | Required | Description | Default |
|---|---|---|---|
| item | Yes | ||
| confirm | No | ||
| source_list | Yes | ||
| destination_list | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses a key behavioral trait: the tool can either preview the move or execute it with confirmation. Since annotations are empty, this disclosure is especially valuable. It does not elaborate on side effects, but the preview/confirm distinction is clearly stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that delivers the core functionality without unnecessary detail. It earns every word.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The output schema exists, so return values are covered elsewhere. However, the description omits details about the confirmation flow (e.g., that confirm defaults to false) and does not compensate for the lack of annotations or parameter descriptions. It is minimally adequate but leaves gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain any of the four parameters. The schema property names (source_list, destination_list, item, confirm) are self-explanatory, but the description adds no additional meaning, leaving the agent to infer semantics from names alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'move' with a clear resource ('item between grocery lists'), and it distinguishes itself from sibling tools like add_item, remove_item, and complete_item. The phrase 'Preview or, with confirmation, move' also communicates the tool's dual mode, adding clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The context is clear: the tool moves items between grocery lists. It does not explicitly mention alternatives (e.g., using remove_item and add_item) or exclusions, but the intent is unambiguous for a user familiar with grocery list operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
remove_itemA
Preview or, with confirmation, permanently remove a matching grocery item.
| Name | Required | Description | Default |
|---|---|---|---|
| item | Yes | ||
| confirm | No | ||
| list_name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly states that the operation can be previewed or, with confirmation, permanently removes the item, flagging the destructive nature and the confirmation gate. This adds meaningful context beyond the empty annotations, though it omits edge-case behaviors like no-match handling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the action and includes both the preview and confirmation aspects. Every word contributes meaning with no fluff, making it appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, and the description covers the core purpose and key safety behavior. However, it lacks guidance on usage relative to sibling tools and does not explicitly state that 'confirm' must be set to true for actual removal, which is a critical invocation detail. With an output schema present, return values are covered, but the description remains minimally sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It addresses the 'confirm' parameter by explaining its role ('with confirmation'), adding semantic value. However, it does not elaborate on 'list_name' or 'item' beyond what the schema already implies, leaving some parameter behavior implicit.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('remove') with a clear resource ('grocery item') and adds a qualifier ('matching') to indicate selection criteria. It distinguishes the tool from siblings like add_item, complete_item, and move_item by explicitly stating the removal action and its destructive nature.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through the 'preview or permanently remove' phrasing, which hints that setting the 'confirm' parameter to true triggers the actual removal. However, it does not explicitly state when to choose this tool over alternatives (e.g., complete_item for marking done) or provide exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
6 tool updates
v0.1.0- First observed
add_item - First observed
complete_item - First observed
get_items - First observed
list_grocery_lists - First observed
move_item - First observed
remove_item
TDQS
Scored across 6 tools
Each tool has a clear, distinct purpose: listing lists, getting items, adding, completing, removing, and moving items. There is no overlap or ambiguity between these actions.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., list_grocery_lists, add_item, complete_item). The naming is uniform and predictable.
With 6 tools, the server is well-scoped for grocery list management. Each tool addresses a distinct operation, and the count is neither too sparse nor overwhelming.
The tool set covers item-level operations (add, get, complete, remove, move) but lacks list-level create/delete operations and any way to update item details like quantity or note after creation. These are notable gaps for a grocery list management server.
Related MCP Connectors
The official Planning Center MCP server for interacting with your ministry's data.
MCP server for accessing curated awesome list documentation
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceMCP server that gives AI agents full control over grocery lists, todos, and packing lists. Your AI creates lists, adds items, checks them off, and shares with family/friends.3MIT
- FlicenseNot gradedqualityAmaintenanceMCP server that integrates with AnyList for managing shopping lists, recipes, and meal planning via natural language.29-
- FlicenseNot gradedqualityCmaintenanceMCP server for the Bring! shopping list API, enabling management of shopping lists via natural language.-
- AlicenseAqualityDmaintenanceManage grocery lists on OurGroceries.com via CLI or MCP, supporting item operations, list management, and natural-language resolution.1110MIT