{
"mcpServers": {
"mcp-recipe-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP Recipe Server .NET implementation
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 177 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Model Context Protocol (MCP) Server to connect your AI with any MediaWiki
MCP server for Apple Developer Documentation - Search iOS/macOS/SwiftUI/UIKit docs, WWDC videos, Swift/Objective-C APIs & code examples in Claude, Cursor & AI assistants
MCP server for scanning and remediating hardcoded secrets using GitGuardian’s API. Detect over 500 secret types and prevent credential leaks before code goes public.
MCP server for interfacing with Godot game engine. Provides tools for launching the editor, running projects, and capturing debug output.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Recipe Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) server implementation in .NET 8 that provides access to recipe data from TheMealDB API. This server offers a complete set of cooking-focused tools, resources, and prompts for culinary exploration and meal planning.
# If cloning from a repository
git clone <repository-url>
cd mcp-recipe-final
# Or download and extract the source files
dotnet restore
dotnet build
Edit appsettings.json to customize settings:
{
"Logging": {
"LogLevel": {
"Default": "Information"
}
},
"Server": {
"Host": "0.0.0.0",
"Port": 8000
},
"RecipeService": {
"ApiBaseUrl": "https://www.themealdb.com/api/json/v1/1",
"RequestTimeoutSeconds": 10
}
}
dotnet run -- [options]
Options:
--port <port> Port to run the server on (default: 8000)
--host <host> Host to bind the server to (default: 0.0.0.0)
--transport <method> Transport method - stdio or http (default: stdio)
--help Show help information
dotnet run -- --transport stdio
Default mode for VS Code and local MCP clients.
dotnet run -- --transport http --port 8080 --host localhost
Enables HTTP API for remote access and web clients.
render.yaml and Dockerfilehttps://your-app.onrender.com/mcpdocker build -t recipe-mcp-server .
docker run -p 8080:8080 recipe-mcp-server
POST /mcp - Main MCP protocol endpointGET /health - Health checkGET / - Server information# Search for Italian recipes
search_recipes("pasta", 5)
# Get specific recipe details
get_recipe_details("52771")
create_meal_plan(["52771", "52772", "52773"], "Weekly Italian Menu")
# View all available cuisines
recipes://cuisines
# Explore Italian recipes
recipes://italian
# Check meal plans
recipes://meal-plans
RecipeServer/
├── Models/
│ ├──
... [View full README on GitHub](https://github.com/ajayindfw/mcp-recipe-server#readme)