70b1f73079
famlistfamily response already contains members[] on each circle object. get_members(circle_id=None) extracts id, name, email, role, right, color, avatar, circle_id and circle_name. get_circles refactored to use the new _famlistfamily() helper, eliminating duplicated auth/call/logout logic. SPEC.md updated with full famlistfamily response structure. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1.8 KiB
1.8 KiB
mcp-familywall
MCP server for Family Wall -- read and manage your family's circles, lists, and tasks directly from Claude.
Features (v0.4.7)
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 listget_activities-- list recent wall activities
Write (with confirmation prompt)
create_task-- create a new task in a listupdate_task-- update the text/description 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