things3-mcp

things3-mcp

A minimal MCP server for Things 3 on macOS that enables listing projects and tasks, creating tasks, and updating task status or metadata via natural language.

Category
Visit Server

README

Things MCP

A deliberately small MCP server for the parts of Things used in daily work.

This project is based on hald/things-mcp. It was rebuilt around a much smaller tool and code surface rather than preserving the full upstream feature set.

Tools

list_projects

Lists active Things projects.

Parameters: none.

Each result contains:

  • id: Project ID used by the other tools.
  • title: Project title.

list_tasks

Lists tasks from Today or from one project.

Parameters:

  • view (required): today or project.
  • project_id: Required when view is project; omit it for today.

Each result contains:

  • id: Task ID used by update_task.
  • title
  • notes
  • when: Scheduled date, when present.
  • status
  • project_id: null for a standalone task.
  • project: Project title, or null for a standalone task.

Examples:

list_tasks(view="today")
list_tasks(view="project", project_id="PROJECT_ID")

create_task

Creates a standalone task or a task inside an existing project.

Parameters:

  • title (required)
  • project_id: Optional ID returned by list_projects.
  • when: Optional Things schedule such as today, tomorrow, or YYYY-MM-DD.
  • notes: Optional task notes.

Examples:

create_task(title="Buy milk", when="today")
create_task(
  title="Prepare meeting notes",
  project_id="PROJECT_ID",
  when="tomorrow",
  notes="Cover the launch plan"
)

Things does not return the new task ID through this URL operation. Call list_tasks afterward when the ID is needed.

update_task

Updates an existing task without moving it or changing unrelated Things data.

Parameters:

  • task_id (required): ID returned by list_tasks.
  • title: Replacement title.
  • notes: Replacement notes. Pass an empty string to clear them.
  • when: Replacement schedule.
  • status: open, completed, or canceled.

At least one change is required. Updating a task requires the Things authorization token described below.

Examples:

update_task(task_id="TASK_ID", notes="Updated context", when="tomorrow")
update_task(task_id="TASK_ID", status="completed")
update_task(task_id="TASK_ID", status="open")

Scope

The server does not expose search, deadlines, tags, areas, headings, checklists, project creation, task movement, bulk operations, or deletion.

Requirements

  • macOS with Things 3 installed
  • Things URLs enabled in Things Settings
  • uv

Updating tasks also requires the Things authorization token. Enable it under Things → Settings → General → Enable Things URLs → Manage.

Enable task updates

Things requires a private authorization token before another app can modify an existing task. The token stays in Things and is read locally by this server; do not paste it into the MCP configuration or share it with an assistant.

On your Mac:

  1. Open Things.
  2. Go to Things → Settings → General.
  3. Enable Things URLs.
  4. Click Manage next to Things URLs.
  5. Enable or generate the authorization token.

Creating tasks only requires Things URLs. Editing, completing, canceling, and reopening tasks require the authorization token.

Run

Run directly from GitHub:

uvx --from git+https://github.com/snellingio/things3-mcp things-mcp

Or clone the repository for local development:

git clone https://github.com/snellingio/things3-mcp.git
cd things3-mcp
uv sync --extra test
uv run things-mcp

Example MCP configuration using GitHub:

{
  "mcpServers": {
    "things": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/snellingio/things3-mcp",
        "things-mcp"
      ]
    }
  }
}

Set THINGS_MCP_TRANSPORT=http to use HTTP instead of stdio. The optional THINGS_MCP_HOST and THINGS_MCP_PORT variables default to 127.0.0.1 and 8000.

Test

uv sync --extra test
uv run pytest
uv run ruff check .

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
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
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
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured