NYT Cooking MCP
Provides tools to search recipes, get full recipe details, and browse saved recipes from New York Times Cooking.
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., "@NYT Cooking MCPsearch for chocolate chip cookies"
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.
NYT Cooking MCP
An MCP server that lets an AI assistant (Claude, etc.) search New York Times Cooking, fetch full recipes, and browse your saved recipe box.
NYT Cooking has no official public API, so this reads the same JSON endpoints the website itself uses. The recipe paywall is enforced client-side, so searching and reading full recipes needs no login at all — only your personal saved recipe box requires a session cookie.
Tools
Tool | Auth needed | Description |
| no | Search recipes by natural-language query. |
| no | Full recipe: ingredients, steps, time, rating. |
| yes | Your saved recipe box. |
| — | Store credentials server-side and verify them. |
| — | Delete the stored credentials. |
| — | Check whether credentials are configured. |
Related MCP server: Mealie MCP Server
Install & run
Requires Python 3.10+. With uv:
git clone https://github.com/bramboe/nyt-cooking-mcp
cd nyt-cooking-mcp
uv run nyt-cooking-mcp # stdio (default)
uv run nyt-cooking-mcp --transport streamable-http --port 3001Or with pipx / pip:
pipx install git+https://github.com/bramboe/nyt-cooking-mcp
nyt-cooking-mcpUse with Claude Desktop / Claude Code
Add to your MCP config (claude_desktop_config.json, or via claude mcp add):
{
"mcpServers": {
"nyt-cooking": {
"command": "uv",
"args": ["run", "--directory", "/path/to/nyt-cooking-mcp", "nyt-cooking-mcp"]
}
}
}Then ask: "search NYT Cooking for marry me chicken" or "get NYT recipe 1024503".
Saved recipes (optional login)
list_saved_recipes is the only tool that needs your account. NYT Cooking has
no OAuth, so credentials are harvested once from your logged-in browser and
persisted server-side (like a session token). Call the login tool with:
nyt_s_cookie— value of theNYT-Scookie oncooking.nytimes.com(DevTools → Application → Cookies).user_id— theregi_idvalue inside theregi_cookie.
login verifies the cookie with a live request and writes it to the
credentials file (--credentials-file, default
~/.config/nyt-cooking-mcp/credentials.json). Environment variables
NYT_S_COOKIE / NYT_USER_ID override the stored file. The NYT-S cookie is
long-lived; when calls start returning auth_required, run login again.
Self-hosting as an always-on service
Run it as a systemd service over streamable-HTTP so it is always available:
# /etc/systemd/system/nyt-cooking-mcp.service
[Unit]
Description=NYT Cooking MCP Server
After=network.target
[Service]
User=nyt-cooking
ExecStart=/opt/nyt-cooking-mcp/.venv/bin/nyt-cooking-mcp \
--transport streamable-http --host 0.0.0.0 --port 3001 \
--credentials-file /var/lib/nyt-cooking-mcp/credentials.json
# Permit LAN access while keeping DNS-rebinding protection on (localhost always allowed):
Environment=NYT_MCP_ALLOWED_HOSTS=your.server.ip:*
Restart=on-failure
[Install]
WantedBy=multi-user.targetThe HTTP endpoint is then http://your.server:3001/mcp. Put a reverse proxy
(TLS) and an auth token in front before exposing it beyond your trusted network.
Disclaimer
For personal use. This is an unofficial tool not affiliated with The New York Times; respect NYT Cooking's Terms of Service and use your own account.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/bramboe/nyt-cooking-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server