[package]
edition = "2021"
rust-version = "1.75"
name = "shell-mcp"
version = "0.1.1"
authors = ["David Liedle <david.liedle@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An MCP server providing scoped, allowlisted shell access for Claude Desktop and other MCP clients."
homepage = "https://github.com/devrelopers/shell-mcp"
documentation = "https://docs.rs/shell-mcp"
readme = "README.md"
keywords = [
"mcp",
"shell",
"claude",
"anthropic",
"model-context",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/devrelopers/shell-mcp"
[lib]
name = "shell_mcp"
path = "src/lib.rs"
[[bin]]
name = "shell-mcp"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "5"
[dependencies.glob]
version = "0.3"
[dependencies.rmcp]
version = "1.5"
features = [
"server",
"macros",
"transport-io",
"schemars",
]
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.shlex]
version = "1.3"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"process",
"io-util",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[profile.release]
lto = "thin"
codegen-units = 1
strip = true