Things MCP Server

Things MCP Server

Enables interaction with the Things app through Claude Desktop, allowing task creation, project analysis, and priority management using natural language commands.

hald

OS Automation
Developer Tools
Visit Server

Tools

get-areas

Get all areas from Things

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-todos

Get todos from Things, optionally filtered by project

get-projects

Get all projects from Things

get-logbook

Get completed todos from Logbook, defaults to last 7 days

get-trash

Get trashed todos

get-tags

Get all tags

get-tagged-items

Get items with a specific tag

search-todos

Search todos by title or notes

search-advanced

Advanced todo search with multiple filters

get-recent

Get recently created items

add-todo

Create a new todo in Things

add-project

Create a new project in Things

update-todo

Update an existing todo in Things

update-project

Update an existing project in Things

show-item

Show a specific item or list in Things

search-items

Search for items in Things

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.

<a href="https://glama.ai/mcp/servers/t9cgixg2ah"><img width="380" height="200" src="https://glama.ai/mcp/servers/t9cgixg2ah/badge" alt="Things Server MCP server" /></a>

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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python