things-mcp 0.2.3

Local-first MCP server bridging Claude to Things 3 on macOS — 29 tools for read, search, write, and tag CRUD.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! AppleScript path for tag-admin operations (`create`/`rename`/`merge`/
//! `delete`/`move_under`). Things' JSON URL has no global tag-admin verbs,
//! so these go through `osascript -e <script>` and trust the synchronous
//! exit code as verification.
//!
//! Symmetric to `core/writer/` for the JSON URL path: a driver trait
//! (`AppleScriptDriver`) with a production impl (`OsascriptDriver`) and a
//! recording test impl (`RecordingAppleScript`), pure `render_*` helpers
//! in `script.rs`, and a facade (`TagAdmin`) in `admin.rs` that owns
//! the safety gate and result composition.

pub mod admin;
pub mod driver;
pub mod script;

pub use admin::{TagAdmin, TagOutcome};
pub use driver::{AppleScriptDriver, OsascriptDriver, RecordingAppleScript};