Description

This MCP server, developed by hald, integrates with the Things task management app to enable AI assistants to interact with users' task data. It leverages the Things.py library and Things URL scheme to provide a wide range of operations including creating tasks, analyzing projects, managing priorities, and more. The implementation is built in Python 3.12+ and uses modern dependencies like httpx and pydantic. It's designed for Things users who want to incorporate AI assistance into their productivity workflow, allowing for natural language queries and updates to their task lists, projects, and areas.

Installation

git clone https://github.com/hald/things-mcp

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "things-app": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}