[package]
edition = "2021"
name = "things-mcp"
version = "0.2.3"
authors = ["Richard Lyon"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first MCP server bridging Claude to Things 3 on macOS — 29 tools for read, search, write, and tag CRUD."
homepage = "https://github.com/richardjlyon/things-mcp"
readme = "README.md"
keywords = [
"mcp",
"things",
"claude",
"productivity",
"macos",
]
categories = [
"command-line-utilities",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/richardjlyon/things-mcp"
[lib]
name = "things_mcp"
path = "src/lib.rs"
[[bin]]
name = "things-mcp"
path = "src/main.rs"
[[test]]
name = "end_to_end_add_todo"
path = "tests/end_to_end_add_todo.rs"
[[test]]
name = "end_to_end_inbox"
path = "tests/end_to_end_inbox.rs"
[[test]]
name = "end_to_end_plan_2"
path = "tests/end_to_end_plan_2.rs"
[[test]]
name = "end_to_end_search"
path = "tests/end_to_end_search.rs"
[[test]]
name = "end_to_end_tags_plan_6"
path = "tests/end_to_end_tags_plan_6.rs"
[[test]]
name = "end_to_end_writes_plan_5"
path = "tests/end_to_end_writes_plan_5.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.directories]
version = "6"
[dependencies.rand]
version = "0.10"
[dependencies.rmcp]
version = "1.7"
features = [
"server",
"macros",
"schemars",
"transport-io",
"transport-streamable-http-server",
]
[dependencies.rusqlite]
version = "0.39"
features = [
"bundled",
"backup",
]
[dependencies.schemars]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "1"
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.6"
features = [
"auth",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.urlencoding]
version = "2"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.tempfile]
version = "3"