An MCP (Model Context Protocol) server that provides comprehensive integration with Things3 on macOS. This server enables AI assistants and other MCP clients to interact with Things3 through 25 specialized tools, offering complete task management capabilities with intelligent error correction and automatic tag creation.
- Complete Things3 Integration: 25 tools covering all aspects of Things3
- TODO Management: Create, read, update, delete, complete, and uncomplete tasks
- Project & Area Management: Full project lifecycle support with area organization and deletion
- Tag System: Hierarchical tag support with creation, deletion, and bulk tag operations
- Bulk Operations: Efficiently move or update multiple items at once
- Automatic Tag Creation: Tags are automatically created when referenced in TODO/project operations
- Error Correction: Automatic fixing of common issues (date conflicts, missing titles)
- Logbook Search: Search completed items with date range filtering
- Performance Optimized: Connection pooling and AppleScript optimization
- macOS (Things3 is macOS-only)
- Node.js >= 16.0.0
- Things3 app installed
- AppleScript access enabled in System Settings
You can use the server without any installation:
{
"mcpServers": {
"things3": {
"command": "npx",
"args": ["things3-mcp@latest"],
"env": {
"THINGS3_AUTH_TOKEN": "your_auth_token_here"
}
}
}
}
npm install -g things3-mcp
Then add to your MCP client configuration:
{
"mcpServers": {
"things3": {
"command": "things3-mcp",
"env": {
"THINGS3_AUTH_TOKEN": "your_auth_token_here"
}
}
}
}
# Clone the repository
git clone https://github.com/urbanogardun/things3-mcp.git
cd things3-mcp
# Install dependencies
npm install
# Build the project
npm run build
For update operations (modify, complete, delete), you need to set your Things3 authorization token:
export THINGS3_AUTH_TOKEN="your_auth_token_here"
To find your authorization token:
- Open Things3
- Go to Settings → General
- Click "Enable Things URLs"
- Click "Manage"
- Copy the authorization token value
You can also create a .env
file (see .env.example
).
-
Open Claude Desktop configuration:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- macOS:
-
Add the Things3 MCP server using one of these methods:
Method 1: Using npx (easiest, no installation required)
{ "mcpServers": { "things3": { "command": "npx", "args": ["things3-mcp@latest"], "env": { "THINGS3_AUTH_TOKEN": "your_auth_token_here" } } } }
Method 2: Global npm install
{ "mcpServers": { "things3": { "command": "things3-mcp", "env": { "THINGS3_AUTH_TOKEN": "your_auth_token_here" } } }
Method 3: Local installation
{ "mcpServers": { "things3": { "command": "node", "args": ["/absolute/path/to/things3-mcp/dist/index.js"] } } }
-
Restart Claude Desktop
Use any of the methods above, adapting the configuration to your MCP client's format.
List TODOs with flexible filtering options.
Parameters:
filter
:"inbox"
|"today"
|"upcoming"
|"anytime"
|"someday"
|"logbook"
(optional)searchText
: Search within titles and notes (optional)
Example:
{
"filter": "today",
"searchText": "meeting"
}
Get detailed information about a specific TODO.
Parameters:
id
: The TODO's unique identifier (required)
Create a new TODO with full property support (automatically creates tags if they don't exist).
Parameters:
title
: Task title (required)notes
: Additional notes (optional)whenDate
: ISO 8601 date string for scheduling (optional)deadline
: ISO 8601 date string for due date (optional)tags
: Array of tag names (optional)checklistItems
: Array of checklist item titles (optional) *projectId
: Assign to project (optional)areaId
: Assign to area (optional)heading
: Title of heading within project to add to (optional)
Example:
{
"title": "Review Q4 Report",
"notes": "Focus on revenue metrics",
"whenDate": "2024-12-15T09:00:00Z",
"deadline": "2024-12-20T17:00:00Z",
"tags": ["work", "urgent"],
"checklistItems": ["Review revenue", "Check expenses", "Update forecast"],
"projectId": "project-id-here"
}
* Note on Checklists: When checklistItems
are provided, the TODO is created using Things3's URL scheme instead of AppleScript. This approach has some limitations:
- Things3 may briefly come to the foreground
- The created TODO's ID cannot be directly retrieved, so the server searches for it by title
- If multiple TODOs have identical titles, the wrong TODO might be returned
- URL scheme support must be enabled in Things3 settings (Settings → General → Enable Things URLs)
Update an existing TODO's properties (automatically creates tags if they don't exist).
Parameters:
id
: TODO identifier (required)- All parameters from
todos_create
(optional)
Mark one or more TODOs as complete.
Parameters:
ids
: Single ID or array of IDs (required)
Mark one or more TODOs as incomplete.
Parameters:
ids
: Single ID or array of IDs (required)
Delete one or more TODOs permanently.
Parameters:
ids
: Single ID or array of IDs (required)
List projects with optional filtering.
Parameters:
areaId
: Filter by area (optional)includeCompleted
: Include completed projects (optional, default: false)
Get detailed project information.
Parameters:
id
: Project identifier (required)
Create a new project (automatically creates tags if they don't exist).
Parameters:
name
: Project name (required)notes
: Project description (optional)areaId
: Assign to area (optional)whenDate
: Start date (optional)deadline
: Due date (optional)tags
: Array of tag names (optional)headings
: Array of section headings (optional)
Update project properties (automatically creates tags if they don't exist).
Parameters:
id
: Project identifier (required)- All parameters from
projects_create
exceptheadings
(optional)
Mark a project as complete.
Parameters:
id
: Project identifier (required)
Delete projects completely from Things3.
Parameters:
ids
: Single project ID or array of project IDs (required)
List all areas.
Parameters:
includeHidden
: Include hidden areas (optional, default: false)
Create a new area.
Parameters:
name
: Area name (required)
Delete areas completely from Things3.
Parameters:
ids
: Single area ID or array of area IDs (required)
List all tags with hierarchy information.
Returns: Array of tags with parentTagId
for nested tags
Create a new tag.
Parameters:
name
: Tag name (required)parentTagId
: Parent tag for nesting (optional)
Add tags to items (automatically creates tags if they don't exist).
Parameters:
itemIds
: Single ID or array of TODO/Project IDs (required)tags
: Array of tag names to add (required)
Remove tags from items.
Parameters:
itemIds
: Single ID or array of TODO/Project IDs (required)tags
: Array of tag names to remove (required)
Delete tags completely from Things3.
Parameters:
names
: Single tag name or array of tag names (required)
Move multiple TODOs to a project or area.
Parameters:
todoIds
: Array of TODO IDs (required)projectId
: Target project (optional)areaId
: Target area (optional)
Update dates for multiple TODOs.
Parameters:
todoIds
: Array of TODO IDs (required)whenDate
: New scheduled date or null to clear (optional)deadline
: New deadline or null to clear (optional)
Search completed items in the logbook.
Parameters:
searchText
: Search in titles and notes (optional)fromDate
: Start date for range (optional)toDate
: End date for range (optional)limit
: Maximum results (optional, default: 50)
Ensure Things3 is running and ready.
The server automatically corrects common issues:
- Date Conflicts: Swaps when/deadline if deadline is before scheduled date
- Missing Titles: Generates title from notes or uses "Untitled"
- Invalid References: Moves items to Inbox if project/area doesn't exist
- Tag Names: Cleans special characters that Things3 doesn't support
Human: Create a new project for the website redesign with tasks for planning, design, and implementation
Claude: I'll create a website redesign project with those tasks for you.
[Creates project and tasks using the Things3 MCP tools]
Create a TODO:
{
"tool": "todos_create",
"parameters": {
"title": "Prepare presentation",
"notes": "Include Q4 metrics and projections",
"whenDate": "2024-12-10T14:00:00Z",
"tags": ["work", "presentation"]
}
}
List today's tasks:
{
"tool": "todos_list",
"parameters": {
"filter": "today"
}
}
# Install dependencies
npm install
# Run in development mode with watch
npm run dev
# Run tests
npm test
# Run integration tests (requires Things3)
npm run test:integration
# Lint code
npm run lint
# Type check
npm run type-check
things3-mcp/
├── src/
│ ├── index.ts # Entry point
│ ├── server.ts # MCP server implementation
│ ├── config.ts # Configuration management
│ ├── tools/ # Tool implementations
│ │ ├── todos.ts # TODO operations
│ │ ├── projects.ts # Project operations
│ │ ├── areas.ts # Area operations
│ │ ├── tags.ts # Tag operations
│ │ ├── bulk.ts # Bulk operations
│ │ ├── logbook.ts # Logbook search
│ │ └── system.ts # System utilities
│ ├── templates/ # AppleScript templates
│ ├── utils/ # Utility functions
│ │ ├── applescript.ts # AppleScript bridge
│ │ ├── cache-manager.ts # Caching system
│ │ ├── error-correction.ts # Error correction
│ │ └── date-handler.ts # Date formatting
│ └── types/ # TypeScript definitions
├── tests/
│ ├── unit/ # Unit tests
│ └── integration/ # Integration tests
└── dist/ # Compiled JavaScript
- Ensure Things3 is installed and running
- Check AppleScript permissions in System Settings > Privacy & Security > Privacy > Automation
- Grant your terminal or IDE permission to control Things3
- macOS may require you to grant automation permissions
- Run this command to test AppleScript access:
osascript -e 'tell application "Things3" to return name of first to do'
- Verify the path in your configuration is absolute
- Check that the server builds successfully:
npm run build
- Look for error messages in your MCP client's logs
- Try running the server directly:
node dist/index.js
- Dates must be in ISO 8601 format (e.g., "2024-12-25T10:00:00Z")
- The server automatically handles timezone conversion
- If dates appear incorrect, check your system's date format settings
- For large operations, use bulk tools instead of individual operations
- Tag operations automatically create missing tags, which may slow down initial operations
- Checklist Items:
- Things3's AppleScript API doesn't support checklist manipulation
- We use URL schemes as a workaround when creating TODOs with checklists
- This may cause Things3 to briefly come to the foreground
- Existing checklist items cannot be modified after creation
- Deleted Items Recovery: Deleted items cannot be recovered via the API
- Reminder Details: Limited reminder information available through AppleScript
- Tag Hierarchy: Tag parent-child relationships are read-only (but tags can be created and deleted)
- URL Scheme Limitations:
- When using URL schemes (for checklists), the newly created TODO's ID cannot be directly retrieved
- The server performs a search to find the created TODO, which may fail if multiple TODOs have identical titles
Contributions are welcome! Please follow conventional commit format and ensure all tests pass before submitting pull requests.
- Built with the Model Context Protocol SDK
- Integrates with Things3 by Cultured Code
- Inspired by the MCP community and various automation tools