fabro/lib/components/fabro-mcp/Cargo.toml
2026-07-23 17:59:34 -04:00

39 lines
940 B
TOML

[package]
name = "fabro-mcp"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "MCP (Model Context Protocol) client for connecting to external tool servers"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
fabro-config = { path = "../../foundation/fabro-config" }
fabro-http.workspace = true
fabro-types = { path = "../../foundation/fabro-types" }
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
futures.workspace = true
tracing.workspace = true
thiserror.workspace = true
sse-stream.workspace = true
rmcp = { workspace = true, features = [
"client",
"macros",
"schemars",
"server",
"transport-child-process",
"transport-streamable-http-client-reqwest",
] }
[dev-dependencies]
axum.workspace = true
tokio = { workspace = true, features = ["test-util", "macros"] }
tokio-stream.workspace = true