This Model Context Protocol (MCP) server lets you use Claude Desktop to interact with your task management data in Things app. You can ask Claude to create tasks, analyze projects, help manage priorities, and more.
This server leverages the Things.py library and the Things URL Scheme.
- Access to all major Things lists (Inbox, Today, Upcoming, etc.)
- Project and area management
- Tag operations
- Advanced search capabilities
- Recent items tracking
- Detailed item information including checklists
- Support for nested data (projects within areas, todos within projects)
- Prerequisites
- Python 3.12+
- Claude Desktop
- Things 3 ("Enable Things URLs" must be turned on in Settings -> General)
- Install uv if you haven't already:
curl -LsSf https://astral.sh/uv/install.sh | sh
Restart your terminal afterwards.
- Install this repo via uv tool:
uv tool install git+https://github.com/askedrelic/things-mcp
- Add the Things server, to run via uvx (uv tool wrapper), to the Claude Desktop configuration file. This is a convenience function using jq you can copy/paste.
claude_config_update() {
local server_name="$1"
local server_config="$2"
local config_file="$HOME/Library/Application Support/Claude/claude_desktop_config.json"
[[ ! -f "$config_file" ]] && echo '{"mcpServers": {}}' > "$config_file"
jq --arg name "$server_name" --argjson config "$server_config" \
'.mcpServers = (.mcpServers // {}) | .mcpServers[$name] = $config' \
"$config_file" > /tmp/claude_config.$$ && \
mv /tmp/claude_config.$$ "$config_file"
jq '.mcpServers' "$config_file"
}
claude_config_update things '{ "command": "uvx", "args": ["things-mcp"] }'
Restart the Claude Desktop app.
- "What's on my todo list today?"
- "Create a todo to pack for my beach vacation next week, include a packling checklist."
- "Evaluate my current todos using the Eisenhower matrix."
- "Help me conduct a GTD-style weekly review using Things."
- Create a project in Claude with custom instructions that explains how you use Things and organize areas, projects, tags, etc. Tell Claude what information you want included when it creates a new task (eg asking it to include relevant details in the task description might be helpful).
- Try adding another MCP server that gives Claude access to your calendar. This will let you ask Claude to block time on your calendar for specific tasks, create todos from upcoming calendar events (eg prep for a meeting), etc.
get-inbox
- Get todos from Inboxget-today
- Get todos due todayget-upcoming
- Get upcoming todosget-anytime
- Get todos from Anytime listget-someday
- Get todos from Someday listget-logbook
- Get completed todosget-trash
- Get trashed todos
get-todos
- Get todos, optionally filtered by projectget-projects
- Get all projectsget-areas
- Get all areas
get-tags
- Get all tagsget-tagged-items
- Get items with a specific tag
search-todos
- Simple search by title/notessearch-advanced
- Advanced search with multiple filters
get-recent
- Get recently created items
project_uuid
(optional) - Filter todos by projectinclude_items
(optional, default: true) - Include checklist items
include_items
(optional, default: false) - Include contained items
status
- Filter by status (incomplete/completed/canceled)start_date
- Filter by start date (YYYY-MM-DD)deadline
- Filter by deadline (YYYY-MM-DD)tag
- Filter by tagarea
- Filter by area UUIDtype
- Filter by item type (to-do/project/heading)
period
- Time period (e.g., '3d', '1w', '2m', '1y')
The server includes error handling for:
- Invalid UUIDs
- Missing required parameters
- Things database access errors
- Data formatting errors
All errors are logged and returned with descriptive messages. To review the MCP logs from Claude Desktop, run this in the Terminal:
# Follow logs in real-time
tail -n 20 -f ~/Library/Logs/Claude/mcp*.log