anylist-mcp
Click on "Install 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., "@anylist-mcpPlan a chicken dinner for tomorrow and add the ingredients to my shopping 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.
Unofficial AnyList MCP Server
An MCP server that integrates with AnyList — shopping lists, recipes, and meal planning — exposed via the Model Context Protocol. Works with Claude Desktop, Claude Code, Claude Web/Mobile, or any MCP-compatible client like Home Assistant.
Two deployment modes:
Local (stdio) — runs on your machine alongside Claude Desktop or Claude Code. Fastest setup, no server required.
HTTP server — runs in Docker behind a Cloudflare Tunnel. Required for Claude Web, Claude Mobile, or home assistant and useful for sharing access across devices or users.
Tools Overview
The MCP server provides 5 domain-grouped tools rather than 18+ individual ones:
shopping — Manage shopping lists and items: add, check off, delete, organize by category and store, and browse favorites
recipes — Browse, create, and import recipes from URLs; includes ingredient and step parsing
meal_plan — Schedule meals on a calendar with optional links to recipes
recipe_collections — Organize recipes into curated named collections
health_check — Verify your connection to AnyList and access to target lists
These tools work together to enable typical workflows: browse or create recipes → plan meals → add ingredients to your shopping list. See docs/tools.md for the complete reference including all actions and parameters.
Related MCP server: AnyList MCP Server
Installation: Claude Desktop
The fastest way to get started is to download the latest anylist-mcp.mcpb from the releases page.
Build a Desktop Extension
Create the local desktop-extension bundle:
npm run packThis produces anylist-mcp.mcpb in the project root. The bundle includes the MCP server and dependencies and validates its manifest during packaging.
To verify a locally built bundle:
unzip -t anylist-mcp.mcpbInstall the Bundle
Before installing, create the login-Keychain item the extension uses. macOS securely prompts for the password because -w is the final argument:
/usr/bin/security add-generic-password -U \
-a "you@example.com" \
-s "anylist-mcp" \
-l "AnyList MCP" \
-wOpen Claude Desktop → Settings → Extensions.
Drag and drop the
.mcpbfile, or click "Advanced settings" → Install extension.No AnyList username or password is requested. The extension reads both from the
anylist-mcplogin-Keychain item when it first connects.
Installation: Claude Code (Recipe-First)
Prerequisites
Setup
git clone --recurse-submodules https://github.com/bobby060/anylist-mcp.git
cd anylist-mcp
npm installThe recipe tools do not need a shopping-list name. Configure ANYLIST_LIST_NAME only when you also want shopping-list access.
On macOS, save your password in Keychain first. This opens a secure password prompt and does not put the password in a configuration file:
npm run keychain:set -- you@example.comRun the same command again after changing your AnyList password. ANYLIST_PASSWORD remains a fallback for non-macOS environments, but should not be committed or put in shared MCP configuration.
Add the local stdio server to Claude Code:
claude mcp add \
--transport stdio \
--scope user \
anylist \
-e ANYLIST_USERNAME=you@example.com \
-e ANYLIST_KEYCHAIN_SERVICE=anylist-mcp \
-- /absolute/path/to/node /absolute/path/to/anylist-mcp/src/server.jsUse command -v node to find the absolute Node path. Verify the configuration with claude mcp get anylist, start a new Claude Code session, then run /mcp.
Try: Search my AnyList recipes for chicken and show the first 10 results. Recipe lists are paginated with limit and offset, and a recipe can be read by its AnyList ID or name.
If you prefer manual JSON configuration, use:
{
"mcpServers": {
"anylist": {
"command": "node",
"args": ["/absolute/path/to/anylist-mcp/src/server.js"],
"env": {
"ANYLIST_USERNAME": "you@example.com",
"ANYLIST_KEYCHAIN_SERVICE": "anylist-mcp"
}
}
}
}Installation: Claude Web / Claude Mobile
Claude Web and Mobile require an HTTP MCP server accessible over HTTPS. This project includes a Docker-based HTTP server designed to run behind a Cloudflare Tunnel. The server is designed for self-hosting, but can theoretically support any number of users. You can (should?) restrict what email addresses are allowed to create accounts in the allowed-emails.txt file.
See docs/cloudflare-setup.md for the full setup guide, including:
Quick tunnel for development (no Cloudflare account needed)
Named tunnel for production (stable URL on your own domain)
Quick start:
git clone --recurse-submodules https://github.com/bobby060/anylist-mcp.git
cd anylist-mcp
# Configure
cp .env.http.example .env # fill in SERVER_SECRET_KEY and SESSION_SECRET
mkdir -p config
cp allowed-emails.example.txt config/allowed-emails.txt # add your email
# Start server + Cloudflare quick tunnel
docker compose --profile cloudflare-temp up --build
# Watch logs for the trycloudflare.com URL, then add it as an MCP server in Claude Settings/ConnectorsGenerating OAuth Client Credentials (for Home Assistant / headless clients)
Some MCP clients — like Home Assistant — require a pre-registered client_id and client_secret rather than dynamic client registration. You create a confidential client once, then enter the credentials in your integration. Home Assistant will still send you through a one-time browser login (authorization code flow) to link your account.
Prerequisites: the HTTP server must already be running and you must have an account on it.
# Run inside the Docker container (the server must be up)
docker compose exec anylist-mcp node scripts/create-client.js you@example.com "Home Assistant"This prints a client_id and client_secret. Save the secret immediately — it is hashed in the database and cannot be retrieved later.
The server URL (what you enter in HA) is:
https://<your-tunnel-domain>See docs/home-assistant.md for step-by-step Home Assistant setup.
Development
# Unit tests (mocked, no credentials needed)
npm test
# Integration tests (requires .env with real credentials)
npm run test:integration
# Inspect with the MCP inspector
npx @modelcontextprotocol/inspector node src/server.jsBuilding the desktop extension
npm run pack # produces anylist-mcp.mcpbRoadmap
Google OAuth — allow users to sign in to the HTTP MCP server with their Google account instead of a separate password.
Web gui-based workflow for created oauth client credentials
Credits
AnyList API from a fork of anylist by @codetheweb.
Contributions welcome — feel free to open issues and pull requests.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to interact with Mealie recipe databases through MCP clients like Claude Desktop.131MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to interact with AnyList for managing shopping lists, recipes, and meal planning. Users can retrieve recipe details, add ingredients to lists, and schedule meals on their AnyList calendar.10
- AlicenseAqualityDmaintenanceAn MCP server that enables users to manage their Amazon Alexa shopping lists directly from MCP clients like Claude. It provides tools for listing, adding, updating, and deleting shopping list items through secure Amazon account authentication.7MIT
- FlicenseNot gradedqualityAmaintenanceMCP server that integrates with AnyList for managing shopping lists, recipes, and meal planning via natural language.28
Related MCP Connectors
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
Log, query, and edit expenses, budgets, and accounts in Manilo from any MCP-compatible AI assistant.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PuttyByteCoding/anylist-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server