[package]
name = "ethcli-mcp"
version = "0.1.13"
edition = "2021"
rust-version = "1.75"
description = "MCP server exposing ethcli functionality as tools"
license = "MIT"
readme = "README.md"
repository = "https://github.com/yldfi/yldfi-rs/tree/main/crates/ethcli-mcp"
homepage = "https://github.com/yldfi/yldfi-rs"
documentation = "https://docs.rs/ethcli-mcp"
keywords = ["ethereum", "mcp", "cli", "blockchain", "web3"]
categories = ["command-line-utilities", "web-programming"]
[[bin]]
name = "ethcli-mcp"
path = "src/main.rs"
[dependencies]
rmcp = { version = "0.15", features = ["server", "macros", "transport-io"] }
tokio = { version = "1", features = ["rt-multi-thread", "process", "sync", "time", "io-util", "macros"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "1"
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
serde_json = "1"
assert_cmd = "2"
predicates = "3"