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