
Things
STDIO从AI助手控制Things.app任务的MCP服务器
从AI助手控制Things.app任务的MCP服务器
Control your Things.app tasks directly from Claude Code, Claude Desktop, Cursor, and other AI assistants using the Model Context Protocol (MCP).
This MCP server lets AI assistants interact with your Things.app tasks on macOS. You can:
For updating existing tasks, you need an authorization token:
Add to ~/Library/Application Support/Claude/claude_desktop_config.json
(macOS):
{ "mcpServers": { "things": { "command": "npx", "args": ["@wenbopan/things-mcp"], "env": { "THINGS_AUTH_TOKEN": "your-token-here" } } } }
Create .cursor/mcp.json
in your project or ~/.cursor/mcp.json
globally:
{ "things": { "command": "npx", "args": ["@wenbopan/things-mcp"], "env": { "THINGS_AUTH_TOKEN": "your-token-here" } } }
After configuration, restart your AI assistant to load the MCP server.
"Show me my today's tasks and create a project for the new marketing campaign with initial tasks for research, design, and content creation."
"Update the mobile app project to add design review and testing tasks, then schedule the design review for next Monday."
"Move all my unscheduled shopping tasks to the 'Personal' area and tag them with 'weekend'."
"Give me a summary of all active projects with their deadlines and completion status."
"Create a task to call the dentist, schedule it for tomorrow, and set a deadline for end of week."
MIT
Issues and pull requests welcome! Please ensure all tests pass before submitting.