[package]
edition = "2024"
name = "task-mcp"
version = "0.3.0"
authors = ["Yutaka Nishimura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server for task runner integration — Agent-safe harness for defined tasks"
readme = "README.md"
keywords = [
"mcp",
"task-runner",
"just",
"agent",
"automation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/task-mcp"
[lib]
name = "task_mcp"
path = "src/lib.rs"
[[bin]]
name = "task-mcp"
path = "src/main.rs"
[[test]]
name = "e2e_stdio"
path = "tests/e2e_stdio.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dotenvy]
version = "0.15"
[dependencies.regex]
version = "1"
[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.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.insta]
version = "1"
features = ["json"]
[dev-dependencies.tempfile]
version = "3"