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.
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):todayorproject.project_id: Required whenviewisproject; omit it fortoday.
Each result contains:
id: Task ID used byupdate_task.titlenoteswhen: Scheduled date, when present.statusproject_id:nullfor a standalone task.project: Project title, ornullfor 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 bylist_projects.when: Optional Things schedule such astoday,tomorrow, orYYYY-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 bylist_tasks.title: Replacement title.notes: Replacement notes. Pass an empty string to clear them.when: Replacement schedule.status:open,completed, orcanceled.
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:
- Open Things.
- Go to Things → Settings → General.
- Enable Things URLs.
- Click Manage next to Things URLs.
- 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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.