[package]
edition = "2021"
rust-version = "1.75"
name = "agent-graph-mcp"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server exposing agent-graph + llm-pipeline for graph-orchestrated LLM workflows — typed rmcp tools, parallel fan-out, interrupt/resume, durable persistence"
readme = "README.md"
license = "MIT"
[lib]
name = "agent_graph_mcp"
path = "src/lib.rs"
[[bin]]
name = "agent-graph-mcp"
path = "src/main.rs"
[[bin]]
name = "agent-graph-mcpd"
path = "src/bin/agent-graph-mcpd.rs"
[[bin]]
name = "agent-graph-operator"
path = "src/bin/agent-graph-operator.rs"
[[test]]
name = "daemon_recovery"
path = "tests/daemon_recovery.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[[test]]
name = "mcp_integration"
path = "tests/mcp_integration.rs"
[[test]]
name = "migrations"
path = "tests/migrations.rs"
[[test]]
name = "operator_authority"
path = "tests/operator_authority.rs"
[[test]]
name = "process_boundary"
path = "tests/process_boundary.rs"
[[test]]
name = "proxy_confinement"
path = "tests/proxy_confinement.rs"
[[test]]
name = "proxy_stdio"
path = "tests/proxy_stdio.rs"
[[test]]
name = "release_manifest"
path = "tests/release_manifest.rs"
[[test]]
name = "template_promotion"
path = "tests/template_promotion.rs"
[[test]]
name = "terminal_projection"
path = "tests/terminal_projection.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.fs2]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.llm-pipeline]
version = "0.2.0"
features = ["openai"]
[dependencies.ri-agent-graph]
version = "0.2.0"
[dependencies.rmcp]
version = "1"
features = [
"server",
"transport-io",
]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.schemars]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"io-std",
"io-util",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
collapsible_if = "allow"
dbg_macro = "deny"
expect_used = "allow"
if_same_then_else = "allow"
incompatible_msrv = "allow"
items_after_test_module = "allow"
needless_lifetimes = "allow"
needless_return = "allow"
redundant_closure = "allow"
suspicious_open_options = "allow"
todo = "deny"
too_many_arguments = "allow"
unimplemented = "deny"
unnecessary_lazy_evaluations = "allow"
[lints.rust]
unsafe_code = "deny"