recipe-tools
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@recipe-toolsExtract recipe from scanned PDF and convert to structured HTML"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
recipe-tools
MCP-Server zur Rezept-Extraktion aus PDFs oder JPG-Dateien. Stellt Prompts und Tools bereit, mit denen ein LLM-Client (Claude Desktop, Cursor, etc.) gescannte Rezepte interaktiv in strukturierte HTML-Dateien umwandeln kann.
Funktionsweise
Der FastMCP-Server in server.py registriert alle Endpunkte zentral:
Prompt
generate_recipe-- Rezept-Workflow fuer MCP-Clients mit Prompt-UnterstuetzungTool
get_recipe_prompt-- Rezept-Workflow fuer Clients die nur Tools unterstuetzenTool
select_image_regions_tool-- Web-GUI zur Bildausschnitt-Selektion mit OCR (oeffnet Browser automatisch, kehrt sofort zurueck)Tool
get_selection_result_tool-- Holt das Ergebnis der Bildausschnitt-Selektion ab, sobald der Nutzer im Browser fertig istTool
get_working_directory_tool-- Zeigt das Arbeitsverzeichnis anTool
build_recipe_html_tool-- Erzeugt HTML aus strukturierten Rezeptdaten und aktualisiert den Index (erzeugtindex.htmlautomatisch aus Template, falls nicht vorhanden)Tool
get_server_version-- Gibt die aktuelle Versionsnummer des Servers zurueck
Related MCP server: mcp_server_image_selector
Projektstruktur
recipe-tools/
├── pyproject.toml
├── README.md
├── CLAUDE.md
├── .flake8
├── src/
│ └── recipe_processor/
│ ├── __init__.py
│ ├── server.py # Zentraler MCP-Server (FastMCP)
│ ├── assets/
│ │ ├── Template.html # HTML-Template fuer einzelne Rezepte
│ │ └── index_template.html # HTML-Template fuer die Rezeptuebersicht
│ ├── core/
│ │ ├── __init__.py
│ │ ├── utils.py # Gemeinsame Utils (Pfade, Verzeichnisse)
│ │ └── recipes_index.py # Rezept-Index-Verwaltung (HTML-Manipulation)
│ └── tools/
│ ├── __init__.py
│ ├── prompt.py # RECIPE_PROMPT Konstante
│ ├── html_builder.py # HTML-Erzeugung aus Rezeptdaten
│ └── image_selector/
│ ├── __init__.py
│ ├── tools.py # Tool-Funktionen (select, list, get_dir)
│ ├── web_gui.py # Browser-GUI (FastAPI + HTML Canvas)
│ ├── gui.py # Tkinter-GUI (inaktiv, Backup)
│ ├── export.py # Region-Export + OCR
│ ├── pdf_utils.py # PDF-Bildextraktion (PyMuPDF)
│ └── utils.py # transform_coords (image_selector-spezifisch)
└── tests/
├── __init__.py
├── test_prompt.py
├── test_server.py
├── test_html_builder.py
├── test_image_selector_tools.py
├── test_web_gui.py
└── test_recipes_index.pyInstallation
uv installieren (einmalig)
# Option 1: winget
winget install astral-sh.uv
# Option 2: pip
pip install uvDanach Terminal neu starten, damit uv im PATH ist.
Umgebungsvariable setzen (einmalig, damit uv venv/ statt .venv/ verwendet)
[System.Environment]::SetEnvironmentVariable("UV_PROJECT_ENVIRONMENT", "venv", "User")Danach Terminal neu starten.
Projekt einrichten
uv sync --extra dev
git config core.hooksPath .githooksuv legt venv/ an, installiert alle Abhaengigkeiten und sperrt die genauen
Versionen in uv.lock. Der zweite Befehl aktiviert den pre-push Hook (laeuft
einmalig nach dem Klonen).
Voraussetzung
Tesseract OCR muss installiert und im PATH sein.
MCP-Server konfigurieren
Beispielkonfiguration fuer Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"recipe-server": {
"command": "path/to/venv/Scripts/recipe-server",
"env": {
"IMAGE_SELECTOR_WORKING_DIR": "C:/Rezepte",
"IMAGE_SUBDIRECTORY": "Eingang"
}
}
}
}Server manuell starten
uv run recipe-serverOder als Modul:
uv run python -m recipe_processor.serverTests und Linting
uv run pytest
uv run flake8 src/ tests/
uv run black src/ tests/Der pre-push Hook (.githooks/pre-push) fuehrt diese drei Schritte automatisch
vor jedem git push aus: black formatiert den Code, flake8 prueft auf Fehler,
pytest fuehrt die Tests aus. Hat black Aenderungen vorgenommen, wird der Push
abgebrochen -- die Formatierungen muessen dann noch committet werden.
CI/CD
Die GitHub Actions Workflows (.github/workflows/) verwenden ebenfalls uv:
CI (
ci.yml): laeuft bei jedem Push und PR -- Linting, Formatierung, TestsRelease (
release.yml): erstellt bei Pushes aufmainautomatisch ein neues Release perpython-semantic-release, wenn konventionelle Commits vorhanden sind (feat:,fix:, etc.). Nach einem Release wirduv.lockautomatisch aktualisiert und mit[skip ci]committed.
uv.lock ist Teil des Repositories und sichert reproduzierbare Installs. Nach
einem git pull genuegt uv sync --extra dev, um die Umgebung zu aktualisieren.
Standalone-Modi (ohne MCP-Server)
Image Selector (Web-GUI)
uv run python -m recipe_processor.tools.image_selector.tools --standaloneOeffnet die Browser-GUI automatisch. Laedt die .env-Datei automatisch (via python-dotenv).
Ohne Argumente werden Bilder aus IMAGE_SUBDIRECTORY geladen.
Optional kann ein Bildpfad direkt uebergeben werden:
uv run python -m recipe_processor.tools.image_selector.tools --standalone pfad/zum/bild.jpgHTML Builder
uv run python -m recipe_processor.tools.html_builder rezept.jsonErzeugt eine HTML-Datei aus einer JSON-Datei mit Rezeptdaten. Die JSON-Datei
enthaelt die gleichen Felder wie die build_recipe_html-Funktion (recipe_name,
ingredients, instructions, etc.). Laedt die .env-Datei automatisch.
Umgebungsvariablen (.env)
Variable | Beschreibung | Default |
| Arbeitsverzeichnis |
|
| Unterverzeichnis fuer Bilder (relativ zum Working Dir) |
|
Templates
Im Verzeichnis src/recipe_processor/assets/ liegen zwei HTML-Templates:
Template.html -- Vorlage fuer einzelne Rezept-HTML-Dateien. Platzhalter werden beim Erzeugen ersetzt:
Platzhalter
Inhalt
<RECIPE_NAME>,<TITLE>Rezeptname
<SUBTITLE>Kurzbeschreibung
<IMAGE_PATH>Relativer Bildpfad
<PREP_TIME>,<COOK_TIME>,<WAIT_TIME>,<TOTAL_TIME>Zeitangaben (Text)
<PREP_TIME_ISO>,<COOK_TIME_ISO>,<WAIT_TIME_ISO>,<TOTAL_TIME_ISO>Zeitangaben (ISO 8601)
<PORTIONS>Portionsangabe
<COOKWARE>Benoetigte Kuechengeraete (kommagetrennt)
<INGREDIENTS>Zutatenliste als
<ul><INSTRUCTIONS>Zubereitungsschritte als
<ol><TIPS>Tipps und Hinweise
<NUTRITION>Naehrwertangaben
<SOURCE>Quellangabe
index_template.html -- Vorlage fuer die Rezeptuebersicht (
index.html). Enthaelt den Platzhalter<CATEGORIES>, der durch die Kategorie-Sections ersetzt wird. Wird automatisch verwendet, wenn im Ausgangsverzeichnis noch keineindex.htmlexistiert.
Zutaten-Ueberschriften
Innerhalb der Zutatenliste koennen Ueberschriften mit dem Muster --- Text --- markiert werden. Diese werden automatisch in <b>Text</b> umgewandelt.
Zutaten mit gleicher Menge ("je"-Syntax)
Zutaten der Form je 1 TL Kreuzkuemmel und Chilipulver werden automatisch in
einzelne Eintraege mit gleicher Menge aufgesplittet:
je 1 TL Kreuzkümmel und Chilipulver → 1 TL Kreuzkümmel
1 TL Chilipulver
je 1 TL Salz, Pfeffer und Paprika → 1 TL Salz
1 TL Pfeffer
1 TL PaprikaBekannte Einheiten: g, kg, mg, l, ml, cl, dl, EL, TL, Stk, Pck, Pkg, Pr, Prise, Msp, Bd, Bund.
Kuechengeraete (cookware)
Das optionale Feld cookware nimmt eine Liste von Geraeten entgegen und gibt sie
kommagetrennt im HTML-Abschnitt "Kuechengeraete" aus. Fehlt das Feld oder ist es leer,
wird der Abschnitt komplett ausgeblendet.
Optionale Felder und bedingte HTML-Bloecke
Die Felder prep_time, cook_time, wait_time, cookware, tips, nutrition
und source sind optional. Ist ein Feld leer, wird der zugehoerige HTML-Block
vollstaendig weggelassen (keine leere Ueberschrift im Output).
Abhaengigkeiten
Paket | Zweck |
fastmcp | MCP-Server-Framework |
Pillow | Bildverarbeitung |
PyMuPDF | PDF-Bildextraktion |
pytesseract | OCR-Texterkennung |
beautifulsoup4 | HTML-Parsing (Rezept-Index) |
lxml | HTML-Parser-Backend fuer BeautifulSoup |
python-dotenv | .env-Datei laden (Standalone-Modus) |
fastapi | Web-Framework fuer Browser-GUI |
uvicorn | ASGI-Server fuer Browser-GUI |
Available Tools
6 toolsbuild_recipe_html_toolB
Erstellt HTML aus strukturierten Rezeptdaten.
Uebernimmt automatisch Dateinamen-Sanitisierung, ISO-Zeitformat-Berechnung, Leerzeichen Menge/Einheit, Quellen-Bereinigung, Template-Befuellung, Bild-Zuordnung, Datei-Speicherung und Index-Aktualisierung.
| Name | Required | Description | Default |
|---|---|---|---|
| tips | No | ||
| source | No | ||
| category | No | ||
| cookware | No | ||
| portions | No | ||
| subtitle | No | ||
| cook_time | No | ||
| nutrition | No | ||
| prep_time | No | ||
| wait_time | No | ||
| ingredients | No | ||
| recipe_name | Yes | ||
| instructions | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses several automatic behaviors such as filename sanitization, ISO time calculation, file saving, and index update. This provides useful side-effect awareness, though it omits details on permissions, error handling, and reversibility.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with a clear purpose sentence followed by a bulleted list of automatic tasks. The list is dense but efficient, avoiding unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 13 parameters, no annotations, and an output schema that does not help input semantics, the description lacks sufficient context about how to use the tool effectively. It covers side effects but not parameter meaning or usage scenarios.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description does not reference any parameter names. Since schema description coverage is 0%, the agent has no explanations for fields like recipe_name, tips, source, or cook_time. The task list (e.g., 'Leerzeichen Menge/Einheit') hints at processing but does not map to specific parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Erstellt HTML aus strukturierten Rezeptdaten' (Creates HTML from structured recipe data), using a specific verb and resource. It also lists various processing tasks, distinguishing itself from sibling tools like get_server_version and get_recipe_prompt.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool or when to prefer alternatives. It does not mention exclusions, prerequisites, or context, leaving the agent without criteria for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recipe_promptA
Gibt den Workflow-Prompt für Rezept-Extraktion aus PDFs zurück.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite having no annotations, the description clearly indicates a read-only retrieval operation ('returns the workflow prompt'), which is the primary behavioral trait. No side effects or hidden behaviors are implied. For a simple getter with zero parameters, this level of disclosure is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, succinct sentence in German that immediately states the tool's function. It contains no fluff or redundancy, and it front-loads the key information in a direct and efficient manner.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with an output schema, the description is reasonably complete. It names the exact output ('workflow prompt for recipe extraction from PDFs'), which suffices given the low complexity. It could have added a hint about the prompt's format or how to use it, but the output schema presumably covers that, so no significant gap exists.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline score is 4. The description does not need to elaborate on parameter details, as there are none to document. It correctly implies that the tool takes no input and directly returns the workflow prompt.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Gibt zurück' (returns) and the resource 'Workflow-Prompt für Rezept-Extraktion aus PDFs' (workflow prompt for recipe extraction from PDFs), making its purpose unambiguous. It is easily distinguishable from sibling tools like get_server_version or build_recipe_html_tool, all of which serve different functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives. It only states what it does, without any context about typical use cases, prerequisites, or when not to use it. Since there are sibling tools with overlapping domains (e.g., build_recipe_html_tool), such guidance would be valuable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_selection_result_toolA
Holt das Ergebnis einer mit select_image_regions_tool gestarteten Auswahl ab.
Solange die Auswahl im Browser noch nicht abgeschlossen wurde, liefert das Tool einen Hinweis zurück und kann beliebig oft erneut aufgerufen werden.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that while the selection is incomplete, the tool returns a hint and can be polled repeatedly. This is useful behavioral context beyond the empty schema. No annotations are provided, so this description partially carries the transparency burden.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no redundancy. The first sentence states the purpose, the second adds the polling behavior. Perfectly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter polling tool with an output schema, the description covers the core workflow: it retrieves results and handles the pending state. It could mention prerequisites or error cases, but the description is adequate for the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the schema is empty. The description correctly omits parameter details. No parameter documentation is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: retrieving the result of a selection started with select_image_regions_tool. It uses a specific verb ('holt ab') and references the sibling tool, distinguishing it from other tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides usage context: call after starting a selection with select_image_regions_tool, and call repeatedly while the selection is still pending. It doesn't explicitly mention when not to use it, but the intended workflow is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_server_versionA
Gibt die aktuelle Version des recipe-servers zurueck.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of disclosure. The description accurately describes the behavior as returning the current recipe server version, implying a read-only operation with no side effects. While it does not elaborate on output format or error handling, the output schema exists, and the simple nature of the tool makes this level of transparency adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence in German that directly states the purpose. There is no superfluous content, and every word contributes to meaning. It is appropriately sized for a trivial no-parameter tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, no side effects) and the presence of an output schema, the description is complete. The agent has enough information to select and invoke the tool correctly without needing additional context. The description fully covers the tool's behavior within the context of its minimal complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the description does not need to explain parameter details. The input schema is empty, and schema coverage is 100% by definition. The baseline score for zero parameters is 4, and the description does not introduce any confusion.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Gibt die aktuelle Version des recipe-servers zurueck' (Returns the current version of the recipe server). The verb 'returns' is specific, the resource 'recipe server version' is clearly identified, and it is distinct from sibling tools like get_working_directory_tool or build_recipe_html_tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives. It simply states what it does, leaving the agent to infer that it should be used when the server version is needed. No exclusions or alternative-referencing statements are present.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_working_directory_toolA
Zeigt das aktuelle Working Directory an.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It merely restates the tool's purpose without disclosing any behavioral traits such as side effects, return format, or error conditions. The description adds no information beyond the tool name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that immediately states the tool's function. It is front-loaded and contains no unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple getter with no parameters and an existing output schema, the description sufficiently communicates the core functionality. However, it lacks usage context or alternative references, though the low complexity makes this acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline score of 4 applies. There is nothing to document in the description, and the schema already covers the empty parameter set.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool displays the current working directory, using a specific verb ('zeigt an') and resource ('Working Directory'). It is distinct from sibling tools that involve server versions, recipe prompts, image regions, selection results, and recipe HTML.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives or any contextual conditions. It simply states what the tool does without explaining when it should be invoked.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
select_image_regions_toolA
Öffnet eine GUI zum interaktiven Auswählen von Bildausschnitten.
Unterstützt Bildformate (JPEG, PNG, etc.) und PDF-Dateien. Ohne image_path werden automatisch die ersten 4 Bilder aus dem Bildverzeichnis geladen.
Kehrt sofort zurück, sobald die GUI im Browser geöffnet wurde (blockiert nicht bis zum Abschluss der Auswahl). Das Ergebnis muss anschließend mit get_selection_result_tool abgeholt werden.
| Name | Required | Description | Default |
|---|---|---|---|
| image_path | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It mentions the non-blocking return immediately after GUI launch, browser-based GUI, automatic loading of first 4 images, and the need to retrieve results later. This is strong transparency, though it doesn't cover error cases or behavior with invalid image paths.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured, with each sentence serving a purpose: main action, supported formats, default behavior, non-blocking return, and result retrieval. No redundant or irrelevant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with a single optional parameter and an output schema, the description provides a complete workflow: launching the GUI, supported inputs, default loading, non-blocking behavior, and the required follow-up step. This is sufficient for an agent to invoke it correctly and know what to expect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only defines image_path as an optional string without additional description. The description adds that omitting image_path loads the first 4 images from the image directory, implying it expects a file path, but it doesn't explicitly explain what image_path accepts or how it relates to supported formats (images vs PDFs), leaving some ambiguity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool opens a GUI for interactive selection of image regions, supported formats, and default behavior. It distinguishes itself from sibling tools by referencing the companion tool get_selection_result_tool for retrieving results.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states the default behavior when image_path is omitted and instructs that the result must be fetched via get_selection_result_tool, defining a clear workflow. However, it doesn't explicitly describe when not to use the tool or contrast it with alternatives beyond the follow-up tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
6 tool updates
v0.9.4- First observed
build_recipe_html_tool - First observed
get_recipe_prompt - First observed
get_selection_result_tool - First observed
get_server_version - First observed
get_working_directory_tool - First observed
select_image_regions_tool
TDQS
Scored across 6 tools
Each tool has a distinct purpose: version info, working directory, prompt retrieval, image selection initiation, selection result retrieval, and HTML building. The paired select/get tools are clearly complementary with explicit descriptions. No two tools appear to do the same thing.
Most tools follow a verb_noun pattern, but the 'tool' suffix is applied inconsistently (e.g., get_server_version vs. get_working_directory_tool). The verbs are clear and predictable (get, select, build), but the naming style is slightly uneven.
With 6 tools, the set is well-scoped for a recipe-oriented MCP server. It covers both utility (version, working directory) and domain-specific operations (prompt, image selection, HTML generation) without being bloated or too sparse.
The core workflow is supported: get prompt, select image regions, fetch result, build HTML. Minor gaps exist (e.g., no explicit PDF-to-text tool, no recipe management), but the provided tools form a coherent pipeline for the intended use case.
Maintenance
Related MCP Connectors
Turn any PDF into structured JSON via AI + OCR: invoices, bank statements, contracts.
- DatanemOAuthcom.datanem
Turn PDFs, scans and photos into a queryable database. Invoices, CVs, receipts, in bulk.
High-fidelity PDF to structured Markdown conversion and document field extraction.
Convert documents and web pages to clean Markdown: PDF, DOCX, XLSX, EPUB, scanned files, any URL.
Related MCP Servers
- AlicenseAqualityBmaintenanceConverts dense PDFs into soft, minimal, card-based HTML readers with preserved source text, rendered pages, and cropped tables/figures as images, all processed locally.32MIT
- AlicenseNot gradedqualityDmaintenanceEnables interactive selection of image regions from images and PDFs, with OCR support and automated export of selected regions as separate files.MIT
- FlicenseNot gradedqualityDmaintenanceEnables managing recipes via a web UI and MCP tools, allowing retrieval and saving of recipe data through natural language.-
- FlicenseNot gradedqualityBmaintenanceProvides secure PDF template analysis and layout extraction for AI assistants, enabling generation of styled HTML with automatic image generation.-