Skip to main content
Glama

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

Related MCP server: Things MCP

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 .
A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • MCP server for generating rough-draft project plans from natural-language prompts.

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/snellingio/things3-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server