1ab410621c
Previously delete_category made two separate login cycles (accgetallfamily to verify + taskcategorydelete to delete) = 6 HTTP calls. Now both happen in one session = 4 HTTP calls. Halves latency and eliminates the risk of a compounding timeout when the API is temporarily slow. FW_DEBUG=1 investigation confirmed the API itself is fast (<1s); the reported 4-min timeout was transient API slowness amplified by the double session overhead. Also recreated 'Obst & Gemüse' (emoji 🍎) as taskCategory/23431854_4956806 after it was accidentally consumed by the debug script. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
91 lines
2.2 KiB
Markdown
91 lines
2.2 KiB
Markdown
# mcp-familywall
|
|
|
|
MCP server for [Family Wall](https://www.familywall.com) -- read and manage your family's circles, lists, and tasks directly from Claude.
|
|
|
|
## Features (v0.4.13)
|
|
|
|
### Read
|
|
|
|
- `get_circles` -- list all family circles
|
|
- `get_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 (includes `category_id` field)
|
|
- `get_categories` -- list categories for a list (locale-filtered; custom categories always included; `custom` flag 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 (supports `category_id` for shopping lists)
|
|
- `update_task` -- update text, description, and/or category of an existing task
|
|
- `toggle_task` -- mark a task complete or reopen it
|
|
- `delete_task` -- permanently delete a task
|
|
- `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/activity
|
|
|
|
## Requirements
|
|
|
|
- Python 3.12+
|
|
- [uv](https://docs.astral.sh/uv/)
|
|
- A Family Wall account
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
uv tool install mcp-familywall
|
|
```
|
|
|
|
## Setup
|
|
|
|
Run the interactive setup wizard once to store your credentials securely in the OS keyring:
|
|
|
|
```bash
|
|
mcp-familywall setup
|
|
```
|
|
|
|
This will:
|
|
1. Prompt for your Family Wall email and password
|
|
2. Verify the credentials against the API
|
|
3. Store them in the OS keyring
|
|
4. Print a Claude Desktop configuration snippet
|
|
|
|
## Claude Desktop configuration
|
|
|
|
Add the printed snippet to your `claude_desktop_config.json`:
|
|
|
|
```json
|
|
{
|
|
"mcpServers": {
|
|
"familywall": {
|
|
"command": "uvx",
|
|
"args": ["mcp-familywall", "serve"]
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
## Verify
|
|
|
|
```bash
|
|
mcp-familywall check
|
|
```
|
|
|
|
## Debug logging
|
|
|
|
Set `FW_DEBUG=1` to log full request/response bodies to stderr (passwords are masked):
|
|
|
|
```bash
|
|
FW_DEBUG=1 mcp-familywall check
|
|
```
|
|
|
|
## Credentials
|
|
|
|
Credentials are resolved in this order:
|
|
|
|
1. Environment variables `FW_EMAIL` and `FW_PASSWORD`
|
|
2. OS keyring (set by `mcp-familywall setup`)
|
|
|
|
## License
|
|
|
|
MIT
|