[package]
edition = "2021"
rust-version = "1.75"
name = "mcplint-cli"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compiler-style static security analyzer for MCP (Model Context Protocol) configurations"
homepage = "https://github.com/mcplint/mcplint"
readme = "README.md"
keywords = [
"mcp",
"security",
"static-analysis",
"sarif",
"agentic-ai",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/mcplint/mcplint"
[[bin]]
name = "mcplint"
path = "src/main.rs"
[[test]]
name = "adapter_test"
path = "tests/adapter_test.rs"
[[test]]
name = "baseline_integration"
path = "tests/baseline_integration.rs"
[[test]]
name = "custom_rule_test"
path = "tests/custom_rule_test.rs"
[[test]]
name = "exit_code_test"
path = "tests/exit_code_test.rs"
[[test]]
name = "fix_test"
path = "tests/fix_test.rs"
[[test]]
name = "fixture_secret_guard"
path = "tests/fixture_secret_guard.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "realistic_fixture_scan"
path = "tests/realistic_fixture_scan.rs"
[[test]]
name = "snapshot_test"
path = "tests/snapshot_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.mcplint-core]
version = "0.1.2"
[dependencies.mcplint-mcp-server]
version = "0.1.2"
[dependencies.mcplint-report]
version = "0.1.2"
[dependencies.mcplint-rules]
version = "0.1.2"
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.mcplint-core]
version = "0.1.2"
[dev-dependencies.mcplint-report]
version = "0.1.2"
[dev-dependencies.mcplint-rules]
version = "0.1.2"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"