a76dc0fd51
Verified via FW_DEBUG=1 + systematic param-name probing that the correct parameter is `taskCategoryId` with value = full metaId from get_categories (e.g. taskCategory/23431854_200). Numeric systemCategoryId alone causes API error; full metaId is accepted and stored. Changes: - create_task: add optional category_id parameter → sent as taskCategoryId - update_task: add optional category_id parameter → sent as taskCategoryId; guard now accepts category_id-only updates - get_tasks: expose category_id field in returned task objects - get_categories: update docstring (param name now known) - SPEC.md: document verified taskCategoryId param + clarify categories[] vs taskCategoryId field distinction - scripts/find_category_param.py: discovery script used to find param name Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2.0 KiB
2.0 KiB
mcp-familywall
MCP server for Family Wall -- read and manage your family's circles, lists, and tasks directly from Claude.
Features (v0.4.10)
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_idfield)get_categories-- list categories available for a list (locale-filtered, default: German)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_idfor shopping lists)update_task-- update text, description, and/or category of an existing tasktoggle_task-- mark a task complete or reopen itdelete_task-- permanently delete a tasklike_post-- like or unlike 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