Every AnyList feature in your terminal — plus offline search, store routing, and cron-safe automations no mobile app can match.
The CLI syncs your shopping lists, recipes, and meal plan to a local SQLite database, then lets you query and automate everything from the shell. Search recipes by ingredient, split shopping lists by store, and build this week's grocery list from your meal plan — all scriptable, JSON-outputting, and safe to run on a schedule.
Created by @jeeves (Jeeves).
The recommended path installs both the anylist-pp-cli binary and the pp-anylist agent skill (Claude Code, Codex, Cursor, Gemini CLI, GitHub Copilot, and other agents supported by the upstream skills CLI) in one shot:
npx -y @mvanhorn/printing-press-library install anylistFor CLI only (no skill):
npx -y @mvanhorn/printing-press-library install anylist --cli-onlyFor skill only — installs the skill into the same agents as the default command above, but skips the CLI binary (use this to update or reinstall just the skill):
npx -y @mvanhorn/printing-press-library install anylist --skill-onlyTo constrain the skill install to one or more specific agents (repeatable — agent names match the skills CLI):
npx -y @mvanhorn/printing-press-library install anylist --agent claude-code
npx -y @mvanhorn/printing-press-library install anylist --agent claude-code --agent codexIf npx isn't available (no Node, offline), install the CLI directly via Go (requires Go 1.26.4 or newer):
go install github.com/mvanhorn/printing-press-library/library/food-and-dining/anylist/cmd/anylist-pp-cli@latestThis installs the CLI only — no skill.
Download a pre-built binary for your platform from the latest release. On macOS, clear the Gatekeeper quarantine: xattr -d com.apple.quarantine <binary>. On Unix, mark it executable: chmod +x <binary>.
Install the CLI binary first. The installer writes binaries to a per-user managed bin directory by default: $HOME/.local/bin on macOS/Linux and %LOCALAPPDATA%\Programs\PrintingPress\bin on Windows.
npx -y @mvanhorn/printing-press-library install anylist --cli-onlyThen install the focused Hermes skill.
From the Hermes CLI:
hermes skills install mvanhorn/printing-press-library/cli-skills/pp-anylist --forceInside a Hermes chat session:
/skills install mvanhorn/printing-press-library/cli-skills/pp-anylist --forceRestart the Hermes session or gateway if the newly installed skill is not visible immediately.
Install both the CLI binary and the focused OpenClaw skill. The installer defaults binaries to a per-user bin directory ($HOME/.local/bin on macOS/Linux, %LOCALAPPDATA%\Programs\PrintingPress\bin on Windows):
npx -y @mvanhorn/printing-press-library install anylist --agent openclawRestart the OpenClaw session or gateway if the newly installed skill is not visible immediately.
This CLI ships an MCPB bundle — Claude Desktop's standard format for one-click MCP extension installs (no JSON config required).
To install:
- Download the
.mcpbfor your platform from the latest release. - Double-click the
.mcpbfile. Claude Desktop opens and walks you through the install. - Fill in
ANYLIST_ACCESS_TOKENwhen Claude Desktop prompts you.
Requires Claude Desktop 1.0.0 or later. Pre-built bundles ship for macOS Apple Silicon (darwin-arm64) and Windows (amd64, arm64); for other platforms, use the manual config below.
Manual JSON config (advanced)
If you can't use the MCPB bundle (older Claude Desktop, unsupported platform), install the MCP binary and configure it manually.
Install the MCP binary from this CLI's published public-library entry or pre-built release.
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"anylist": {
"command": "anylist-pp-mcp",
"env": {
"ANYLIST_ACCESS_TOKEN": "<your-key>"
}
}
}
}AnyList uses email + password authentication returning a short-lived access_token and a refresh_token. The CLI stores these in ~/.config/anylist-pp-cli/config.toml and transparently refreshes on 401 responses. All requests require two additional headers: X-AnyLeaf-API-Version: 3 and a stable X-AnyLeaf-Client-Identifier (a 32-char hex UUID generated once per device and reused).
# Authenticate with your AnyList email and password
anylist-pp-cli auth login
# Pull all your lists, recipes, and meal plan into the local SQLite cache
anylist-pp-cli sync
# See all your shopping lists
anylist-pp-cli lists list
# Pipe unchecked items to jq for scripting
anylist-pp-cli items list --list Groceries --unchecked --json | jq '.[].name'
# View this week's meal plan as a Mon-Sun grid
anylist-pp-cli meal summary --week
# Preview adding this week's recipe ingredients to your grocery list
anylist-pp-cli meal add-to-list --week --list Groceries --dry-run
These capabilities aren't available in any other tool for this API.
-
recipes search --ingredient— Find every recipe that uses a given ingredient instantly — no scrolling, no guessing.Use this when an agent needs to suggest meals from available pantry items without making multiple API calls.
anylist-pp-cli recipes search --query chicken --ingredient --agent
-
recipes filter— Filter your entire recipe library by prep time, rating, serving count, and collection simultaneously.Use this when an agent needs to find recipes that fit a time or quality constraint for meal planning.
anylist-pp-cli recipes filter --max-prep 30 --min-rating 4 --collection Weeknight --agent
-
lists by-store— Split a shopping list into per-store groups sorted by store aisle order — ready for multi-store shopping trips.Use this when an agent needs to generate a structured shopping route across multiple stores.
anylist-pp-cli lists by-store --name Groceries --agent
-
recipes missing— See exactly which ingredients you still need to buy before adding a recipe — skip what's already on your list.Use this before adding a recipe to a list to avoid redundant items and show users only the net-new ingredients they need.
anylist-pp-cli recipes missing --recipe "Pasta Bake" --list Groceries --agent -
meal summary— Render a Mon–Sun meal plan grid with Breakfast/Lunch/Dinner labels — pasteable into messages or scripts.Use this when an agent needs to present the week's meal plan in a human-readable format for sharing or review.
anylist-pp-cli meal summary --week | pbcopy -
items search— Find any item across all your shopping lists at once — shows which list it's on and whether it's checked.Use this when an agent needs to locate an item without knowing which list it was added to.
anylist-pp-cli items search --query "almond milk" --agent
-
meal add-to-list— Automatically build this week's shopping list from your meal plan — idempotent and safe to run on a schedule.Use this in a cron job or agent workflow to pre-populate the shopping list before a weekly grocery trip.
anylist-pp-cli meal add-to-list --week --list Groceries --dry-run
-
recipes add-to-list— Add a recipe's ingredients to your list while avoiding duplicate unchecked items already on the target list.Use this when adding recipes to a list without creating duplicate unchecked line items.
anylist-pp-cli recipes add-to-list --recipe "Pasta Bake" --list Groceries --scale 4 --merge -
lists reset— Clear all checked items from a list in one command — idempotent and safe for cron to run after every shopping trip.Use this in a post-trip automation to reset the list for the next week without manually unchecking each item.
anylist-pp-cli lists reset --name Groceries --keep-unchecked
-
sync status— Report how fresh your local cache is per entity type, with exit code 1 if any data is stale.Use this as a cron preflight check to ensure agent operations run against up-to-date local data.
anylist-pp-cli sync status --stale-after 24h || anylist-pp-cli sync
Run anylist-pp-cli --help for the full command reference and flag list.
View item categories
anylist-pp-cli categories- List all item categories
Manage recipe collections
anylist-pp-cli collections add- Add a recipe to a collectionanylist-pp-cli collections create- Create a new recipe collectionanylist-pp-cli collections delete- Delete a recipe collectionanylist-pp-cli collections list- List all recipe collectionsanylist-pp-cli collections remove- Remove a recipe from a collection
View favorite items
anylist-pp-cli favorites- List favorite items across all lists
Organize shopping lists into folders
anylist-pp-cli folders create- Create a new list folderanylist-pp-cli folders delete- Delete a list folderanylist-pp-cli folders list- List all list folders
Manage items within a shopping list
anylist-pp-cli items add- Add an item to a shopping listanylist-pp-cli items check- Mark one or more items as checked (bought)anylist-pp-cli items list- List items in a shopping listanylist-pp-cli items recent- Show recently added items across all listsanylist-pp-cli items remove- Remove an item from a shopping listanylist-pp-cli items search- Search for items by name across all shopping listsanylist-pp-cli items uncheck- Mark one or more items as uncheckedanylist-pp-cli items update- Update an existing item's quantity or notes
Manage shopping lists
anylist-pp-cli lists by-store- Display a shopping list grouped by store with aisle orderinganylist-pp-cli lists create- Create a new shopping listanylist-pp-cli lists delete- Delete a shopping listanylist-pp-cli lists list- List all shopping listsanylist-pp-cli lists reset- Clear all checked items from a list to prepare for the next shopping tripanylist-pp-cli lists settings- View or update settings for a shopping list
Manage the meal planning calendar
anylist-pp-cli meal add- Add an event to the meal planning calendaranylist-pp-cli meal add-to-list- Add all recipe ingredients from the meal plan to a shopping listanylist-pp-cli meal delete- Delete a meal plan eventanylist-pp-cli meal labels- List meal plan labels (Breakfast, Lunch, Dinner, Snack, etc.)anylist-pp-cli meal show- Show meal plan events for a date range (defaults to current week)anylist-pp-cli meal summary- Display the meal plan as a Mon–Sun grid with Breakfast/Lunch/Dinner labels
Manage recipes — import, organize, and add to shopping lists
anylist-pp-cli recipes add-to-list- Add recipe ingredients to a shopping list, avoiding duplicate unchecked itemsanylist-pp-cli recipes batch-add- Add ingredients from multiple recipes to a list at onceanylist-pp-cli recipes create- Create a new recipeanylist-pp-cli recipes delete- Delete a recipeanylist-pp-cli recipes filter- Filter recipes by prep time, rating, servings, and collectionanylist-pp-cli recipes import- Import a recipe from a URLanylist-pp-cli recipes list- List all recipesanylist-pp-cli recipes missing- Show which recipe ingredients are not already on a shopping listanylist-pp-cli recipes scale- Scale a recipe's ingredient quantities to a target serving countanylist-pp-cli recipes search- Search recipes by name or ingredient (uses local SQLite cache)anylist-pp-cli recipes show- Show full recipe details including ingredients and preparation steps
Manage starter list items (template items for new lists)
anylist-pp-cli starters- List starter list items
View and manage stores and store filters
anylist-pp-cli stores- List all stores and store filters
# Human-readable table (default in terminal, JSON when piped)
anylist-pp-cli categories
# JSON for scripting and agents
anylist-pp-cli categories --json
# Filter to specific fields
anylist-pp-cli categories --json --select id,name,status
# Dry run — show the request without sending
anylist-pp-cli categories --dry-run
# Agent mode — JSON + compact + no prompts in one flag
anylist-pp-cli categories --agentThis CLI is designed for AI agent consumption:
- Non-interactive - never prompts, every input is a flag
- Pipeable -
--jsonoutput to stdout, errors to stderr - Filterable -
--select id,namereturns only fields you need - Previewable -
--dry-runshows the request without sending - Explicit retries - add
--idempotentto create retries when a no-op success is acceptable - Confirmable -
--yesfor explicit confirmation of destructive actions - Piped input - write commands can accept structured input when their help lists
--stdin - Agent-safe by default - no colors or formatting unless
--human-friendlyis set
Exit codes: 0 success, 2 usage error, 3 not found, 4 auth error, 5 API error, 7 rate limited, 10 config error.
anylist-pp-cli doctorVerifies configuration, credentials, and connectivity to the API.
Config file: ~/.config/anylist-pp-cli/config.toml
Static request headers can be configured under headers; per-command header overrides take precedence.
Environment variables:
| Name | Kind | Required | Description |
|---|---|---|---|
ANYLIST_ACCESS_TOKEN |
per_call | Yes | Set to your API credential. |
Common patterns and recipes for everyday use.
Build this week's grocery list from your meal plan:
anylist-pp-cli meal add-to-list --week --list Groceries --dry-run # preview
anylist-pp-cli meal add-to-list --week --list Groceries # applyFind recipes by ingredient and scale servings:
anylist-pp-cli recipes search --ingredient chicken --json | jq '.[0].name'
anylist-pp-cli recipes scale --recipe "Chicken Tikka" --servings 8Sync, filter, and pipe items to another tool:
anylist-pp-cli sync && anylist-pp-cli items list --list Groceries --unchecked --json \
| jq -r '.[].name' | sortCheck authentication and connectivity:
anylist-pp-cli doctor
anylist-pp-cli doctor --json | jq .credentialsAuthentication errors (exit code 4)
- Run
anylist-pp-cli doctorto check credentials - Verify the environment variable is set:
echo $ANYLIST_ACCESS_TOKENNot found errors (exit code 3) - Check the resource ID is correct
- Run the
listcommand to see available items
- 401 Unauthorized on every request — Run
anylist-pp-cli auth refreshto force a token refresh, orauth loginto re-authenticate - Commands return stale data (old item names, missing lists) — Run
anylist-pp-cli syncto pull the latest state from the server - recipes search --ingredient returns no results — Run
anylist-pp-cli syncfirst — ingredient search queries the local cache which must be populated - X-AnyLeaf-Client-Identifier errors — The client identifier in ~/.config/anylist-pp-cli/config.toml must be a stable 32-char hex string; delete the config and re-run
auth loginto regenerate
This CLI was built by studying these projects and resources:
- bobby060/anylist-mcp — TypeScript
- davidashman/anylist-mcp — TypeScript
- kevdliu/hacs-anylist — Python
- codetheweb/anylist — JavaScript
- phildenhoff/anylist_rs — Rust
- bcspragu/anylist — Go
Generated by CLI Printing Press