[package]
name = "hyperdb-mcp"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "MCP server for Hyper database — instant SQL analytics for LLM workflows"
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "README.md"
keywords = ["database", "hyper", "mcp", "analytics", "arrow"]
categories = ["database", "command-line-utilities"]
[lib]
name = "hyperdb_mcp"
path = "src/lib.rs"
[[bin]]
name = "hyperdb-mcp"
path = "src/main.rs"
[dependencies]
hyperdb-api = { path = "../hyperdb-api", version = "=0.6.1" }
rmcp = { version = "1.7", features = ["server", "transport-io"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "signal", "time"] }
serde = { workspace = true }
serde_json = { workspace = true, features = ["preserve_order"] }
semver = "1"
clap = { version = "4", features = ["derive"] }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
csv = "1.4"
arrow = { version = "58", default-features = false, features = ["ipc", "json", "csv"] }
parquet = { version = "58", default-features = false, features = ["arrow"] }
schemars = "1.2"
thiserror = { workspace = true }
chrono = { workspace = true }
plotters = "0.3"
base64 = "0.22"
notify = "8"
tokio-util = { version = "0.7", features = ["rt"] }
tempfile = { workspace = true }
sqlformat = "0.5.0"
dirs = "6"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[lints]
workspace = true
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
rmcp = { version = "1.7", features = ["server", "transport-io", "client"] }
[build-dependencies]
chrono = { workspace = true }