[package]
name = "mcp-bridge-rs-utcp"
version = "1.0.0"
edition = "2021"
description = "MCP bridge for Rust UTCP - exposes UTCP tools as MCP tools"
license = "MIT OR Apache-2.0"
authors = ["Universal Tool Calling Protocol"]
[dependencies]
# Async runtime
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# For stdio communication
tokio-util = { version = "0.7", features = ["codec"] }
futures = "0.3"
# UTCP client
rs-utcp = "=0.2.1"