6c955d67c8dc4c64af5b340b68092d2c1ffde28d
- fw_client: detect nested a00.un errors (previously silent-failed as success) - update_task: add clear_due_date=True parameter that returns a clear error explaining the Family Wall API cannot clear dueDate once set - SPEC.md: document all tested clearing candidates and their API responses, add Fehlerstruktur-Varianten section - Verified: dueDate cannot be removed via any form-encoded value; all invalid date strings are rejected via a00.un.un (silently swallowed before this fix) 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, and tasks directly from Claude.
Features (v0.4.15)
Read
get_circles-- list all family circlesget_members-- list members of a circle (or all circles)get_lists-- list all task lists (optionally filtered by circle)get_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)
Write (with confirmation prompt)
create_task-- create a new task in a list (supportscategory_id,due_date,assignee_ids)update_task-- update text, description, category, due date, assignees, or move to a different list (note: clearing a due date is not supported by the Family Wall API)toggle_task-- mark a task complete or reopen itdelete_task-- permanently delete a taskcreate_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/activity
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%