things3-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@things3-mcpshow my projects"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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")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
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-mcpOr 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-mcpExample 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 .This server cannot be installed
Maintenance
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
- AlicenseAqualityCmaintenanceAn MCP server that allows AI assistants like Claude Code, Claude Desktop, and Cursor to interact with Things.app on macOS, enabling task creation, updates, viewing, scheduling, and organization through natural language.Last updated6103MIT
- AlicenseAqualityDmaintenanceAn MCP server for Things 3 on macOS that enables AI assistants to create, read, update, and manage tasks and projects. It utilizes the Things URL scheme for write operations and AppleScript for querying data from the app.Last updated15112MIT
- AlicenseAqualityDmaintenanceAn MCP server for Things 3 on macOS that enables AI assistants to create, read, update, and manage tasks, projects, and areas. It utilizes the Things URL scheme for write operations and AppleScript for querying data directly from the application.Last updated15112MIT
- AlicenseBqualityBmaintenanceMCP server that gives AI agents read/write access to your Things3 tasks via the Things API.Last updated321Apache 2.0
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…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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