[package]
edition = "2024"
rust-version = "1.85"
name = "rest-e2e-mcp"
version = "0.3.0"
authors = ["Yutaka Nishimura"]
build = false
include = [
"src/**/*.rs",
"src/**/*.j2",
"resources/guides/*.md",
"resources/spec/*.yaml",
"resources/examples/*.yaml",
"Cargo.toml",
"README.md",
"LICENSE-*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server for AI-driven REST API end-to-end testing — use-case oriented, safe, efficient"
homepage = "https://github.com/ynishi/rest-e2e-mcp"
documentation = "https://docs.rs/rest-e2e-mcp"
readme = "README.md"
keywords = [
"mcp",
"rest-api",
"e2e-testing",
"ai",
"test-automation",
]
categories = [
"development-tools::testing",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/rest-e2e-mcp"
[lib]
name = "rest_e2e_mcp"
path = "src/lib.rs"
[[bin]]
name = "rest-e2e-mcp"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dotenvy]
version = "0.15"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.minijinja]
version = "2"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.rmcp]
version = "0.17"
features = [
"server",
"transport-io",
"macros",
]
[dependencies.schemars]
version = "1.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.insta]
version = "1"
features = ["json"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"