Provides dish-name lookups and recipe retrieval via an MCP bridge using a lightweight stdio server.
Configuration
View docs{
"mcpServers": {
"disdjj-mcp-cook": {
"command": "npx",
"args": [
"mcp-cook"
]
}
}
}Cook MCP Server lets MCP-enabled clients look up dish names and fetch recipes through a lightweight, configurable server bridge. It’s useful for adding quick culinary lookups and recipe retrieval to your MCP workflows without building custom endpoints.
Configure your MCP client to recognize the Cook MCP Server by adding the following MCP configuration. This enables you to start using the server to either look up dish names or retrieve recipes.
{
"mcpServers": {
"codelf": {
"command": "npx",
"args": ["mcp-cook"]
}
}
}There are two supported modes: 1. Report dish names 2. Retrieve recipes Use the MCP client to initiate either mode and receive results from the Cook MCP Server as part of your normal MCP workflow.