home / mcp / things mcp server
Provides programmatic access to Things 3 data via MCP to create, read, update, and navigate items.
Configuration
View docs{
"mcpServers": {
"hildersantos-things-mcp": {
"command": "npx",
"args": [
"github:hildersantos/things-mcp"
],
"env": {
"THINGS_AUTH_TOKEN": "your-token-here"
}
}
}
}Things MCP enables Claude Desktop and Claude Code to interact with Things 3 on macOS, letting you create, update, list, navigate, and search Things items directly from your preferred MCP client running locally or remotely.
You connect an MCP client to this server to manage Things 3 data. Use creation tools to add to‑dos and projects, reading tools to list and inspect items, and navigation tools to open specific lists or items. Update operations require authentication, so you can modify existing items after providing your Things auth token.
Prerequisites: you need macOS with Things 3 installed and Node.js 18 or later. Ensure Things URLs are enabled in Things settings.
# Quick start (recommended)
npx github:hildersantos/things-mcp
# Manual installation
# 1) Clone the repository
git clone https://github.com/hildersantos/things-mcp.git
cd things-mcp
# 2) Install dependencies
npm install
# 3) Build the project
npm run build
# 4) Start the server
npm startConfigure Claude Desktop to connect to the Things MCP server by adding a server entry with the appropriate command and environment variables. You will provide your Things auth token to enable update operations.
{
"mcpServers": {
"things-mcp": {
"command": "npx",
"args": ["github:hildersantos/things-mcp"],
"env": {
"THINGS_AUTH_TOKEN": "your-token-here"
}
}
}
}On first use, macOS may ask for permission to control Things. Grant this permission to allow the MCP server to perform actions in Things. Ensure your THINGS_AUTH_TOKEN is kept secure and not exposed in client configurations.
Create a to‑do with all supported options and metadata in Things 3.
Create a project with sections, todos, and hierarchical organization in Things 3.
Update an existing to‑do using the JSON API for full feature support (requires auth token).
Update an existing project with full feature support via JSON API (requires auth token).
Add structured to‑dos and headings to an existing project.
List items in the Things Inbox.
List items due today.
List scheduled items.
List anytime items.
List completed items.
List trashed items.
List all active projects.
List all areas.
List all tags.
List items in a specific project (requires project_id).
List items in a specific area (requires area_id).
Get items from a specific list by name.
Get detailed information about a specific to‑do.
Navigate to an item or list.