A safe, fast MCP server for the Things 3 task manager (Cultured Code) on macOS — reads from the local SQLite database, writes only through the official Things URL Scheme.
Project description
SUUR Things MCP
Give any AI agent safe, structured access to your Things 3 tasks — plus a local, Things-faithful web dashboard with Kanban boards, an Eisenhower matrix, repo-linking, and a YouTube-thumbnail card view.
An MCP server for Things 3 (Cultured Code) on macOS. Let Claude Code, Claude Desktop, Codex, or any MCP-capable agent read and manage your tasks, projects, and areas — and get a local dashboard that looks like Things but adds the views Things doesn't have.
# 1. point your agent at it (Claude Code shown)
claude mcp add things -- uvx suur-things-mcp
# 2. (optional) open the dashboard
uvx suur-things-mcp dashboard # → http://127.0.0.1:8765
That's it. Reads work immediately with no token. Add a token (below) when you want the agent to modify existing tasks.
What it is (and the one design decision that matters)
Two data paths, deliberately split:
- Reads come straight from the local Things SQLite database — instant and complete: Today, Upcoming, Inbox, Anytime, Someday, Logbook, Trash, full-text search, projects, areas, tags, and full item detail.
- Writes go only through the official Things URL Scheme — add to-dos/projects, update, complete, cancel, reschedule, move between projects, append checklist items.
Why this matters: Cultured Code's own AI-integration guidance is blunt — writing directly to the Things database is unsafe and can corrupt it. They endorse the URL Scheme as the safe automation path. This server follows that exactly: it reads the DB read-only and never writes to it. Every mutation is a things:/// URL, the same mechanism Things documents for Shortcuts and AppleScript.
So an agent can't corrupt your database through this server even if it tries. The worst a write can do is what the URL Scheme itself allows.
Privacy: an agent connected to this server can read your to-do and note content, which is then sent to whatever model you're using. Review your agent's privacy policy. Nothing here phones home; there's no telemetry and no bundled LLM.
Cool use cases
These are the workflows this unlocks once an agent can see and shape your task system:
- Plan → project, instantly. Hand Claude an implementation plan and the
plan_to_projectprompt; it materializes a real Things project — a to-do per step with sub-tasks as checklist items — in onebatchcall. (Things' URL Scheme can't create headings, so phases get folded into titles/notes rather than faked.) - "What should I work on in this repo?" Link a Things project to a local git repo. From inside that repo, the
work_on_repoprompt resolves which project you're in (viaCLAUDE_PROJECT_DIR/ cwd), pulls its open to-dos, and works the next one. - Sweep code TODOs into Things. Point your agent at the codebase: it greps
TODO/FIXME, andbatch-creates to-dos withfile:linereferences — no new tool needed, the agent already has Grep + this server. - Auto-organize a messy Inbox. Hit the ✨ button on any folder (or use the
organize_folderprompt). It spawns your agent headlessly with zero tools and zero MCP, so it can only propose cleaner titles/notes/tags — never write or be prompt-injected. You review every change before it's applied. (And yes, an agent can re-file Inbox items into the right projects —updatesupports moving vialist-id.) - Eisenhower any project. The Priority Matrix isn't a separate place — it's a view toggle on every list, project, and area. Open a project → Matrix → drag tasks (and the area's projects) into Do First / Schedule / Delegate / Don't Do.
- A "watch later" wall. A project full of YouTube links? Switch to the Cards view and they render as thumbnails with play buttons.
- A glanceable portfolio board. Saved Kanban boards where each card is a whole project or area (progress ring + open count), with one-click Open in editor / terminal / GitHub for linked repos.
- One-call situational awareness.
overviewreturns a whole-system digest (counts, today, overdue, projects with no next action, recent completions) in a single call instead of ten.
Requirements
Install
uvx runs it with no manual install or virtualenv:
uvx suur-things-mcp # run the MCP server over stdio
uvx suur-things-mcp dashboard # run the dashboard instead
Claude Code
# read-only (no token)
claude mcp add things -- uvx suur-things-mcp
# read + write (modify existing items) — pass your token
claude mcp add things --env THINGS_AUTH_TOKEN=your-token-here -- uvx suur-things-mcp
Claude Desktop / Codex / other MCP clients
Add to your client's MCP config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"things": {
"command": "uvx",
"args": ["suur-things-mcp"],
"env": { "THINGS_AUTH_TOKEN": "your-token-here" }
}
}
}
THINGS_AUTH_TOKEN is optional. Without it you can read everything and create new to-dos/projects. It's only needed to modify existing items.
Bleeding edge (straight from main, before a release lands on PyPI)
uvx --from git+https://github.com/artyomsklyarov/suur-things-mcp suur-things-mcp
Getting your Things auth token
- Things → Settings → General
- Enable "Enable Things URLs"
- Click Manage and copy the token
Keep it secret — it grants write access via the URL Scheme. It's stored locally (see below), never in this repo.
Updating
There's no custom "update" command — updates ride on whatever fetched the package. uvx caches, so:
uvx --refresh suur-things-mcp # re-fetch the latest release, then restart your MCP client
If you installed it as a persistent tool:
uv tool install suur-things-mcp # one-time
uv tool upgrade suur-things-mcp # update later
Nuclear option (clear the cache): uv cache clean suur-things-mcp. From main, add --refresh to the git command above.
Tools (30)
Read — no token required
| Tool | Returns |
|---|---|
overview |
One-call system digest: counts, today, overdue, projects with no next action, recent completions |
get_today |
Today (incl. overdue + this evening) |
get_inbox |
Inbox |
get_upcoming |
Scheduled, future-dated to-dos |
get_anytime / get_someday |
Anytime / Someday lists |
get_logbook |
Recently completed/canceled (limit) |
get_deadlines |
To-dos with deadlines |
get_trash |
Trash |
search_todos |
Full-text search over titles + notes |
list_todos |
Filter by project / area / tag / status / bucket |
get_projects / get_areas / get_tags |
Structure (include_items for contents) |
get_item |
Full detail for any UUID |
current_link / list_links |
Repo-link lookups (see below) |
Write — via the URL Scheme
| Tool | Token? |
|---|---|
add_todo, add_project |
no |
show (navigate Things to a list/item) |
no |
open_dashboard (open the local board) |
no |
link_repo, unlink_repo |
no (config only) |
batch (bulk create/update via the json command) |
only if it contains updates |
update_todo, update_project |
yes |
complete_todo, cancel_todo, schedule_todo |
yes |
add_checklist_items |
yes |
The URL Scheme doesn't return a new item's UUID on create. After
add_todo/add_project, usesearch_todosif you need the ID.
Prompts
Packaged MCP prompts — workflows your client surfaces as slash commands (the exact name/prefix is client-controlled):
| Prompt | What it does |
|---|---|
plan_to_project |
Turn an implementation plan into a Things project — a to-do per step, sub-tasks as checklist items — via batch (no headings; URL-Scheme limit) |
work_on_repo |
From inside a linked repo, resolve its Things project, pull open to-dos, work the next one |
organize_folder |
Propose clearer titles/notes/tags for a folder (reusing existing tags), review in chat, apply on approval |
weekly_review |
GTD weekly review — flag stalled projects, rotting Someday items, overdue deadlines; propose fixes |
triage_inbox |
Propose a project/area + tags + when per Inbox item; file on approval |
whats_next |
Rank Today/Anytime by deadline, age, and your tags; recommend the single next task |
standup |
Yesterday's logbook + today + blocked, formatted to paste into Slack or a PR |
capture_todos |
Sweep code TODO/FIXME into Things to-dos with file:line references |
close_from_commit |
Complete the Things to-dos a git commit resolved |
repo_to_issue |
Promote a Things to-do to a GitHub issue (via gh) and link them |
issues_to_todos |
Mirror a repo's open GitHub issues into Things to-dos under its linked project |
The GTD and code/GitHub prompts use only the existing tools (plus the agent's own Grep/Bash/gh) — the server stays dumb. A few more polish ideas live on the roadmap.
Dashboard
A local web UI that mirrors the Things look (real glyphs, typography, edit card) and adds the views Things lacks. Binds 127.0.0.1 only, reads the DB read-only, and always runs on port 8765 (it reuses a live instance instead of spawning duplicates).
uvx suur-things-mcp dashboard # opens http://127.0.0.1:8765
Or have the agent open it with the open_dashboard tool.
Sidebar — Things' built-in lists (with their real colored icons), a Priority Matrix entry, your saved project boards, and areas with nested projects + progress rings. An area with only projects shows them as project cards. Tag filter chips sit under any list's title. A search box runs things.search over your whole database.
Three views, toggled per list (List / Matrix / Cards):
- List — the faithful Things grouped list (by project/heading), with the Things-style inline edit card (checkbox + title, Notes, When/deadline/tag pills, footer toolbar). Edits save on close, only if you changed something.
- Matrix — an Eisenhower matrix over that list's tasks. Drag into Do First / Schedule / Delegate / Don't Do. On an area, its projects are draggable too. Priority is global per task (set it anywhere, see it everywhere). The sidebar Priority Matrix entry is the matrix over Today.
- Cards — task cards; anything with a YouTube link renders as a thumbnail (other links get a 🔗 tile). Great for a "watch later" project.
Project boards — saved portfolio Kanbans. Each card is a project or whole area (progress ring + open count), dragged between stage columns (Backlog / In Progress / On Hold / Done). Add multiple named boards with the + on the Boards group; configure name / columns / included areas+projects in the ⚙ panel (auto-saves).
Repo links — link a Things project/area to one or more local git repos (an app + its website, say). GitHub is auto-detected from the repo's origin remote. Board cards get Open in editor (⌨) / terminal (❯) / GitHub (↗) buttons; set your editor command + terminal app in ⚙ Preferences (or SUUR_THINGS_EDITOR / SUUR_THINGS_TERMINAL).
Stage placement and priority quadrants are browser-side overlays — Things has no such concept — so dragging needs no token. Editing a task's fields does write to Things (URL Scheme) and needs THINGS_AUTH_TOKEN; without it the edit card is read-only.
Live & low-friction: the board auto-refreshes (~25 s poll; it pauses while you're editing, dragging, filtering, searching, or in a background tab, and keeps your scroll position). Drag a task onto Today / Anytime / Someday in the sidebar to reschedule it (when=). Your current view + theme survive a refresh (state is in the URL hash).
Where your data lives
Three tiers — important if you switch machines:
-
Real task data → Things' own database. Anything you change that's a Things field (title, notes, when, deadline, tags, complete/cancel, move) is written via the URL Scheme into Things, and syncs across your devices through Things Cloud like normal. This server never stores your tasks.
-
Dashboard config → one local JSON file.
~/.config/suur-things-mcp/board.json— your boards, Priority-Matrix assignments, repo links, and prefs (keyed by stable Things UUIDs).~/.config/suur-things-mcp/token— your Things auth token (chmod 600).
Not in the browser, not in Things. (
$XDG_CONFIG_HOMEis honored if set.) -
Browser localStorage — only cosmetic state (light/dark, which areas are collapsed). Nothing you'd miss.
Backup / move machines: copy or symlink ~/.config/suur-things-mcp/ (e.g. into Dropbox). Two caveats: the token is a secret (fine in personal storage, never in a public repo), and repo links store absolute paths that are machine-specific — the UUID-keyed boards/priorities port cleanly, the paths may need repointing.
Configuration
| Env var | Purpose |
|---|---|
THINGS_AUTH_TOKEN |
Required to modify existing items (tools) and to edit/move in the dashboard |
THINGS_DB |
Override the SQLite path (e.g. point at a backup for testing) |
SUUR_THINGS_CONFIG |
Override the board.json path |
SUUR_THINGS_EDITOR / SUUR_THINGS_TERMINAL |
Default editor command / terminal app for repo-launch buttons |
SUUR_THINGS_AGENT |
Which CLI the ✨ organize button spawns (claude / codex) |
How it works
┌──────────────┐ read (SQLite, read-only) ┌──────────────────────────┐
│ MCP client │ ─────────────────────────────▶ │ things.py → main.sqlite │
│ (Claude/etc) │ └──────────────────────────┘
│ + │ write (things:/// URL) ┌──────────────────────────┐
│ dashboard │ ─────────────────────────────▶ │ open -g → Things.app │
└──────────────┘ └──────────────────────────┘
Reads use the excellent things.py, which opens the DB read-only and absorbs every schema quirk. Writes are built and URL-encoded in urlscheme.py and fired with open -g. The dashboard is a single self-contained Starlette app (no build step, no external JS) served from dashboard.py.
The server stays dumb on purpose. It returns clean structured data and ships packaged prompts; the judgment (prioritize, triage, synthesize) lives in your agent, not a hardcoded rules engine. There is no bundled model and no API key.
Known limits (Things' URL Scheme, not us)
- Creating headings isn't supported by the URL Scheme — only the app can.
- Create commands don't return the new UUID (search for it afterward).
- macOS only (Things is Mac/iOS; there's no cloud API).
Development
git clone https://github.com/artyomsklyarov/suur-things-mcp
cd suur-things-mcp
uv sync
uv run pytest # unit tests — URL building + dashboard, no Things required
uv run suur-things-mcp # run the server over stdio
uv run suur-things-mcp dashboard
Tests build and assert URL-Scheme strings and dashboard endpoints without touching your real database, so they're safe to run anywhere. Contributions welcome — see the roadmap for what's planned.
Credits & license
Built by Artyom Sklyarov · suur.io. MIT licensed — see LICENSE.
Independent and unofficial. "Things" is a trademark of Cultured Code GmbH & Co. KG. Not affiliated with or endorsed by Cultured Code. Reads via things.py; built on the Model Context Protocol.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file suur_things_mcp-0.3.0.tar.gz.
File metadata
- Download URL: suur_things_mcp-0.3.0.tar.gz
- Upload date:
- Size: 61.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a27bc7092f39f078d3158ce874596045af2e413b67801ba90060b95a32223c15
|
|
| MD5 |
b0ff22d733f1cbcd463376db8ef8ef04
|
|
| BLAKE2b-256 |
1f1cee33e8075458f59be77925516618d75678757028ef7414961ae3256840e9
|
Provenance
The following attestation bundles were made for suur_things_mcp-0.3.0.tar.gz:
Publisher:
release.yml on artyomsklyarov/suur-things-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
suur_things_mcp-0.3.0.tar.gz -
Subject digest:
a27bc7092f39f078d3158ce874596045af2e413b67801ba90060b95a32223c15 - Sigstore transparency entry: 1630650322
- Sigstore integration time:
-
Permalink:
artyomsklyarov/suur-things-mcp@41b4ed921fa0fc58fe4543271b8ceef588481986 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/artyomsklyarov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@41b4ed921fa0fc58fe4543271b8ceef588481986 -
Trigger Event:
release
-
Statement type:
File details
Details for the file suur_things_mcp-0.3.0-py3-none-any.whl.
File metadata
- Download URL: suur_things_mcp-0.3.0-py3-none-any.whl
- Upload date:
- Size: 57.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27df7ea2b13edb4489fe95ee41846ea745693d5f2029209ccbacd97f9f661aed
|
|
| MD5 |
adca484ff422e81993550f0bbce9c51a
|
|
| BLAKE2b-256 |
31d6363d2093874668a7a06d983c884a09fea61a5b3417ba803d26fadde56ef9
|
Provenance
The following attestation bundles were made for suur_things_mcp-0.3.0-py3-none-any.whl:
Publisher:
release.yml on artyomsklyarov/suur-things-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
suur_things_mcp-0.3.0-py3-none-any.whl -
Subject digest:
27df7ea2b13edb4489fe95ee41846ea745693d5f2029209ccbacd97f9f661aed - Sigstore transparency entry: 1630650333
- Sigstore integration time:
-
Permalink:
artyomsklyarov/suur-things-mcp@41b4ed921fa0fc58fe4543271b8ceef588481986 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/artyomsklyarov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@41b4ed921fa0fc58fe4543271b8ceef588481986 -
Trigger Event:
release
-
Statement type: