Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

things-mcp

MCP.Pizza Chef: hald

The Things MCP Server is a Model Context Protocol server that integrates the Things app task management system with AI models like Claude Desktop. It allows users to interact with their Things data programmatically, enabling task creation, project analysis, priority management, and more. Leveraging the Things.py library and Things URL Scheme, it provides access to all major Things lists such as Inbox, Today, and Upcoming, supports project and area management, tag operations, advanced search, and detailed item information including checklists and nested data structures. This server enhances productivity by enabling AI-assisted task management workflows within the Things ecosystem.

Use This MCP server To

Create and manage tasks in Things app via AI Analyze and prioritize projects using AI insights Perform advanced searches on task lists Manage tags and organize tasks efficiently Track recent items and task updates Access detailed task and checklist information Handle nested projects and areas programmatically

README

Things MCP Server

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.

Things Server MCP server

Features

  • 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)

Installation (for Claude Desktop)

  1. Prerequisites
  • Python 3.12+
  • Claude Desktop
  • Things 3 ("Enable Things URLs" must be turned on in Settings -> General)
  1. Install uv if you haven't already:
curl -LsSf https://astral.sh/uv/install.sh | sh

Resart your terminal afterwards.

  1. Clone this repository:
git clone https://github.com/hald/things-mcp
  1. Install the required Python packages:
cd things-mcp
uv venv
uv pip install -r pyproject.toml
  1. Edit the Claude Desktop configuration file:
code ~/Library/Application\ Support/Claude/claude_desktop_config.json

Add the Things server to the mcpServers key to the configuration file (be sure to update the path to the folder where you installed these files):

{
    "mcpServers": {
        "things": {
            "command": "uv",
            "args": [
                "--directory",
                "/ABSOLUTE/PATH/TO/PARENT/FOLDER/things-mcp",
                "run",
                "things_server.py"
            ]
        }
    }
}

Restart the Claude Desktop app.

Sample Usage with Claude Desktop

  • "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."
Tips
  • 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.

Available Tools

List Views
  • get-inbox - Get todos from Inbox
  • get-today - Get todos due today
  • get-upcoming - Get upcoming todos
  • get-anytime - Get todos from Anytime list
  • get-someday - Get todos from Someday list
  • get-logbook - Get completed todos
  • get-trash - Get trashed todos
Basic Operations
  • get-todos - Get todos, optionally filtered by project
  • get-projects - Get all projects
  • get-areas - Get all areas
Tag Operations
  • get-tags - Get all tags
  • get-tagged-items - Get items with a specific tag
Search Operations
  • search-todos - Simple search by title/notes
  • search-advanced - Advanced search with multiple filters
Time-based Operations
  • get-recent - Get recently created items

Tool Parameters

get-todos

  • project_uuid (optional) - Filter todos by project
  • include_items (optional, default: true) - Include checklist items

get-projects / get-areas / get-tags

  • include_items (optional, default: false) - Include contained items

search-advanced

  • 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 tag
  • area - Filter by area UUID
  • type - Filter by item type (to-do/project/heading)

get-recent

  • period - Time period (e.g., '3d', '1w', '2m', '1y')

Troubleshooting

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

things-mcp FAQ

How do I install the Things MCP Server for Claude Desktop?
Installation instructions are provided in the server's GitHub repository, typically involving setup of the Things.py library and configuration within Claude Desktop.
Can the Things MCP Server access all task lists in Things app?
Yes, it supports access to major lists including Inbox, Today, Upcoming, and more.
Does the server support managing projects and areas?
Yes, it allows full project and area management within the Things app data.
How does the server handle nested data like projects within areas?
It supports nested data structures, enabling interaction with projects inside areas and todos within projects.
Is it possible to perform advanced searches on tasks using this server?
Yes, the server includes advanced search capabilities for efficient task retrieval.
Can I manage tags on tasks through the Things MCP Server?
Yes, tag operations are fully supported for organizing tasks.
What AI models can I use with the Things MCP Server?
While optimized for Claude Desktop, it can work with other MCP-compatible models like OpenAI's GPT-4 and Anthropic's Claude.
Does the server provide detailed information about tasks?
Yes, including checklists and other metadata for each task.