Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"recipe-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
MCP Security Weekly
Get CVE alerts and security updates for Recipe Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Minimal Go skeleton for the PizzaMaker MCP server.
GET /health: liveness/readiness checkGET /metrics: Prometheus-compatible metrics endpointGET /mcp: MCP server infoGET /mcp/tools: list available tools and schemasPOST /mcp/tools/generate_recipe: generate recipe draft (mode, prompt, optional constraints)POST /mcp/tools/customize_recipe: customize recipe draft (mode, prompt, optional constraints, baseRecipe)go run ./cmd
Default port is 8080. Override with:
MCP_SERVER_PORT=8085 go run ./cmd
Application version in /health is read from APP_VERSION (default dev).
The service supports multiple provider backends through environment variables:
AI_PROVIDER: ollama | external | mock (default: ollama)AI_HTTP_TIMEOUT_MS: request timeout in milliseconds (default: 60000)AI_GENERATION_MAX_ATTEMPTS: max retry attempts when output is invalid (default: 2)OLLAMA_BASE_URL: Ollama URL (default: http://localhost:11434)OLLAMA_MODEL: model name used for generation (default: llama3.2:3b)EXTERNAL_API_BASE_URL: external provider base URL (required for external)EXTERNAL_API_KEY: optional bearer token for external