docs(recipes): document isRecipe-flag behavior in get_recipe_box (v0.11.8)
Documentation-only release explaining the isRecipe flag: - isRecipe='true': Real recipes in the recipe box - isRecipe='false': Free-text stubs from meal planner OR old imported recipes never properly tagged (e.g. recipe/16282169_7055369 'Elsässer Flammkuchen') get_recipe_box filters strictly on isRecipe='true' — consistent with Family Wall app. Updated SPEC.md, README.md, CLAUDE.md with v0.11.8. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -48,3 +48,4 @@ probe_*.py
|
|||||||
probe_*.txt
|
probe_*.txt
|
||||||
p*_err.txt
|
p*_err.txt
|
||||||
test_*.py
|
test_*.py
|
||||||
|
reference/
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ und wird in Claude Desktop eingebunden.
|
|||||||
|
|
||||||
## Aktueller Stand
|
## Aktueller Stand
|
||||||
|
|
||||||
### Implementierte Tools (v0.11.7)
|
### Implementierte Tools (v0.11.8)
|
||||||
|
|
||||||
| Kategorie | Tools |
|
| Kategorie | Tools |
|
||||||
|---|---|
|
|---|---|
|
||||||
@@ -70,7 +70,8 @@ und wird in Claude Desktop eingebunden.
|
|||||||
- v0.11.4: delete_meal_plan_entry (metadelete für dish/ und meal/-Objekte) ✓
|
- v0.11.4: delete_meal_plan_entry (metadelete für dish/ und meal/-Objekte) ✓
|
||||||
- v0.11.5: add_meal_note (mpmealput; Notiz + Portionen; strukturierter Output) ✓
|
- v0.11.5: add_meal_note (mpmealput; Notiz + Portionen; strukturierter Output) ✓
|
||||||
- v0.11.6: clear_list (alle Tasks einer Liste in einer Session löschen; bulk delete) ✓
|
- v0.11.6: clear_list (alle Tasks einer Liste in einer Session löschen; bulk delete) ✓
|
||||||
- v0.11.7: get_recipe_box (nur echte Rezepte, isRecipe=true) + Parser-Fix ingredients_parsed aus Freitext statt API-List ✓ ← aktuell
|
- v0.11.7: get_recipe_box (nur echte Rezepte, isRecipe=true) + Parser-Fix ingredients_parsed aus Freitext statt API-List ✓
|
||||||
|
- v0.11.8: get_recipe_box isRecipe-Flag-Dokumentation (Freitext-Stubs vs. echte Rezepte) ✓ ← aktuell
|
||||||
- v2.0: Schreibzugriff auf Wall-Posts (Erstellen, Kommentieren)
|
- v2.0: Schreibzugriff auf Wall-Posts (Erstellen, Kommentieren)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
MCP server for [Family Wall](https://www.familywall.com) -- read and manage your family's circles, lists, tasks, and recipes directly from Claude.
|
MCP server for [Family Wall](https://www.familywall.com) -- read and manage your family's circles, lists, tasks, and recipes directly from Claude.
|
||||||
|
|
||||||
## Features (v0.11.7)
|
## Features (v0.11.8)
|
||||||
|
|
||||||
### Read
|
### Read
|
||||||
|
|
||||||
|
|||||||
@@ -542,8 +542,17 @@ POST https://api.familywall.com/api/metasync
|
|||||||
```
|
```
|
||||||
a00.r.r.updatedCreated[] → Liste aller Rezepte der Familie
|
a00.r.r.updatedCreated[] → Liste aller Rezepte der Familie
|
||||||
→ Felder identisch mit mprecipeput-Response (siehe oben)
|
→ Felder identisch mit mprecipeput-Response (siehe oben)
|
||||||
|
.isRecipe → "true" oder "false" (wichtig!)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**isRecipe-Flag (v0.11.8):**
|
||||||
|
- `isRecipe="true"` → Echtes Rezept in der Rezeptbox (`get_recipe_box` gibt es zurück)
|
||||||
|
- `isRecipe="false"` → Freitext-Stub aus dem Essensplaner ODER altes importiertes Rezept,
|
||||||
|
das nie korrekt getaggt wurde
|
||||||
|
- `get_recipe_box` filtert strikt nach `isRecipe="true"` — konsistent mit der Family Wall App
|
||||||
|
- **Bekanntes Beispiel:** `recipe/16282169_7055369` ("Elsässer Flammkuchen") hat `isRecipe=false`
|
||||||
|
trotz vorhandener Zutaten und Anleitung. Family Wall behandelt es nicht als Rezeptbox-Eintrag.
|
||||||
|
|
||||||
**Hinweis:** Der Parameter `id` nimmt einen MetaIdTypeEnum-Wert, kein tatsächliches Objekt.
|
**Hinweis:** Der Parameter `id` nimmt einen MetaIdTypeEnum-Wert, kein tatsächliches Objekt.
|
||||||
Nur `"recipe"` (lowercase) funktioniert – `"RECIPE"`, `"Recipe"` und andere Schreibweisen
|
Nur `"recipe"` (lowercase) funktioniert – `"RECIPE"`, `"Recipe"` und andere Schreibweisen
|
||||||
liefern `MetaIdTypeEnum`-Fehler.
|
liefern `MetaIdTypeEnum`-Fehler.
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "mcp-familywall"
|
name = "mcp-familywall"
|
||||||
version = "0.11.7"
|
version = "0.11.8"
|
||||||
description = "MCP server for Family Wall — read your family's lists and tasks via Claude"
|
description = "MCP server for Family Wall — read your family's lists and tasks via Claude"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.11.7"
|
__version__ = "0.11.8"
|
||||||
|
|||||||
Reference in New Issue
Block a user