abb557e96b4f5f5fc822fac949aced509840f0bd
- get_lists(scope): API scope parameter now used server-side; accepts circle
metaId ("family/XXXX") or circle name; returns circle_id field per list
- create_list(circle_id): new optional param; passes as API scope param
- delete_list: derives circle from list metaId and passes scope for
secondary-circle lists
- Added _circle_id_from_list_id() helper (taskList/FAMNUM_LISTNUM -> family/FAMNUM)
- SPEC.md: documented scope param for taskgettasklists, taskcreatelist, taskdeletelist
- Verified: familyId/circleId/id params ignored by API, only scope works
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
mcp-familywall
MCP server for Family Wall -- read and manage your family's circles, lists, tasks, and recipes directly from Claude.
Features (v0.7.1)
Read
get_circles-- list all family circlesget_members-- list members of a circle (or all circles)get_lists-- list all task lists (includesemoji,color,circle_id;nullwhen unset); optionalscopeparameter filters by circle metaId or circle nameget_tasks-- list tasks in a specific list (includescategory_id,due_date,assignee_ids)get_categories-- list categories for a list (locale-filtered; custom categories always included;customflag marks user-created ones)get_activities-- list recent wall activities (author resolved to display name)get_recipes-- list all family recipes (compact summary: id, name, prep/cook time, serves)get_recipe-- get a single recipe in full detail (ingredients, instructions, ingredients_parsed, etc.)
Write (with confirmation prompt)
create_task-- create a new task in a list (supportscategory_id,due_date,assignee_ids); use"Äpfel (5x)"format for quantitiesupdate_task-- update text, description, category, due date, assignees, or move to a different list; supportsclear_due_date=Trueto remove a due datetoggle_task-- mark a task complete or reopen itdelete_task-- permanently delete a taskcreate_list-- create a new task list (SHOPPING_LIST or TODOS; optionalemoji,color, andcircle_idto target a specific circle)delete_list-- permanently delete a list and all its tasks (system lists are protected)create_category-- create a custom category for a shopping list (with optional icon)delete_category-- delete a custom category (system categories are protected)like_post-- like a wall post/activitycreate_recipe-- create a new recipe (name, description, ingredients, instructions, prep/cook time, serves, url); use\nto separate ingredient linesupdate_recipe-- update any field of an existing recipe (partial update — omitted fields unchanged)delete_recipe-- permanently delete a recipe (only own recipes)create_circle-- create a new Family Wall circle (group); note: circles cannot be deleted via APIadd_member_to_circle-- invite a person to a circle by e-mail (for new Family Wall users only; existing accounts require in-app invitation)
Requirements
- Python 3.12+
- uv
- A Family Wall account
Installation
uv tool install mcp-familywall
Setup
Run the interactive setup wizard once to store your credentials securely in the OS keyring:
mcp-familywall setup
This will:
- Prompt for your Family Wall email and password
- Verify the credentials against the API
- Store them in the OS keyring
- Print a Claude Desktop configuration snippet
Claude Desktop configuration
Add the printed snippet to your claude_desktop_config.json:
{
"mcpServers": {
"familywall": {
"command": "uvx",
"args": ["mcp-familywall", "serve"]
}
}
}
Verify
mcp-familywall check
Debug logging
Set FW_DEBUG=1 to log full request/response bodies to stderr (passwords are masked):
FW_DEBUG=1 mcp-familywall check
Credentials
Credentials are resolved in this order:
- Environment variables
FW_EMAILandFW_PASSWORD - OS keyring (set by
mcp-familywall setup)
License
MIT
Languages
Python
100%