Cargo.toml•746 B
[package]
name = "substrate-mcp-rs"
version = "0.1.0"
edition = "2024"
authors = ["Thomas Marches <thomas.marches@epitech.eu>"]
description = "A Model Context Protocol (MCP) server for interacting with Substrate blockchains, written in Rust."
license = "MIT"
repository = "https://github.com/ThomasMarches/substrate-mcp-rs"
[dependencies]
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { version = "1.45", features = ["full"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
subxt = { version = "0.44", features = ["native"] }
subxt-signer = "0.44"
hex = "0.4"
dotenv = "0.15"
rmcp = { version = "0.8", features = ["server", "transport-io"] }
schemars = "1.0.4"