[package]
edition = "2024"
rust-version = "1.90"
name = "mcp-repl"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive MCP client REPL: connects to any MCP server and turns its tools, prompts, and resources into the command set"
readme = "README.md"
keywords = [
"mcp",
"repl",
"cli",
"client",
"protocol",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshrotenberg/tower-mcp"
[[bin]]
name = "mcp-repl"
path = "src/main.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.nu-ansi-term]
version = "0.50"
[dependencies.reedline]
version = "0.49"
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower-mcp]
version = "0.14"
features = ["http-client"]
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]