Skip to content
Back to search
100
MCP live v1.0.0 MCP 2025-11-25 streamable-http

Guardian Engine

dev.kaimeilabs/guardian-engine

Deterministic recipe verification engine — validates AI-generated recipes against master SOPs.

Uptime
100.0%
1 direct probes · 30d
Response
383ms
last probe
Tools
7
callable
Resources
0
readable
Prompts
1
available

Tools · 7

verify_recipe

Verify a candidate recipe against a Guardian master recipe. Uses deterministic graph-based verification to check technique, temperature, timing, cooking medium, and required ingredients. **Verdict**…

fix_recipe

Deterministically repair a candidate recipe against a Guardian master. Verifies the candidate, applies every machine-actionable correction the symbolic engine produced (missing ingredients, quantitie…

list_dishes

List all available master dishes with rich metadata. Returns: Dictionary with `schema_version` and a `dishes` list. Each dish includes slug, title, cuisine, region, aliases, and complexity.

get_master

Return the canonical master recipe for a dish (read-only, no LLM). Enables compare-then-verify agentic loops: fetch the master, diff it against the user's recipe, then call verify_recipe — instead of…

check_safety

Run master-independent safety checks on a candidate recipe. Works for ANY recipe — no dish resolution, no master SOP required. Checks poultry internal-temperature safety and scans all ingredients for…

check_allergens

Check ingredients for EU FIC 1169/2011 allergen compliance. Returns a detailed audit trace mapping each ingredient to its EU Annex II allergen group with entry numbers and labels. The safety verdict …

verify_dietary_claim

Verify that a recipe satisfies a dietary claim (vegan, halal, gluten-free, ...). Reuses the existing allergen-detection logic plus a curated forbidden-ingredient map (apps/guardian/knowledge/dietary_…

Prompts · 1

verify_recipe_prompt

Provides instructions and a template for an AI agent to verify a recipe. Args: dish: The name of the dish to verify (e.g. 'carbonara', 'rendang').

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "guardian_engine": {
      "url": "https://api.kaimeilabs.dev/mcp",
      "transport": "streamable-http"
    }
  }
}