[package]
edition = "2021"
name = "mcp-rtk"
version = "1.6.0"
build = false
exclude = [
".cargo/",
".gitlab-ci.yml",
".releaserc.json",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Token-optimizing MCP proxy - sits between Claude and upstream MCP servers, compressing tool responses by 60-90%"
readme = "README.md"
keywords = [
"mcp",
"proxy",
"token",
"claude",
"llm",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://gitlab.com/thomastartrau/mcp-rtk"
[lib]
name = "mcp_rtk"
path = "src/lib.rs"
[[bin]]
name = "mcp-rtk"
path = "src/main.rs"
[[test]]
name = "benchmark_savings"
path = "tests/benchmark_savings.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "proptest_filter"
path = "tests/proptest_filter.rs"
[[bench]]
name = "filter_perf"
path = "benches/filter_perf.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.arc-swap]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.notify]
version = "6"
[dependencies.regex]
version = "1"
[dependencies.rmcp]
version = "0.1"
features = [
"client",
"server",
"transport-io",
"transport-child-process",
]
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true