degentics-ai/mcp-recipes
If you are the rightful owner of mcp-recipes and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A server that exposes tools to query recipes using the Model Context Protocol (MCP).
The MCP Recipes Server is designed to facilitate the querying of recipes through the Model Context Protocol (MCP). It allows users to search for recipes by various parameters such as name, ingredients, cuisine, or ID. This server is particularly useful for developers looking to integrate recipe data into their applications, providing a structured and efficient way to access a wide range of culinary information. The server is built to be easily installed and run, with support for both development and production environments. It is open-source and licensed under the MIT License, making it accessible for modification and distribution.
Features
- Query recipes by name, ingredients, cuisine, or ID
Usages
local integration stdio
python mcp.run(transport='stdio') # Tools defined via @mcp.tool() decorator
local integration ide plugin
{ "mcpServers": { "recipes": { "command": "yarn", "args": ["dev"] } } }
remote integration sse
python mcp.run(transport='sse', host="0.0.0.0", port=3000) # Specify SSE endpoint
remote integration streamable http
yaml paths: /mcp: post: x-ms-agentic-protocol: mcp-streamable-1.0 # Copilot Studio integration
platform integration ai toolchains
{"command": "docker", "args": ["run", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server"]}
development framework fastmcp
python from mcp.server import FastMCP app = FastMCP('demo') @app.tool() async def query(): ...