[package]
edition = "2021"
rust-version = "1.75"
name = "agent-graph-mcp"
version = "0.2.2"
build = false
include = [
"src/",
"tests/",
"README.md",
"LICENSE-MIT",
"assets/",
]
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"
homepage = "https://github.com/RecursiveIntell/ri-agent-graph"
documentation = "https://docs.rs/agent-graph-mcp"
readme = "README.md"
keywords = [
"mcp",
"agent",
"graph",
"workflow",
"orchestration",
]
categories = [
"development-tools",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/RecursiveIntell/ri-agent-graph"
[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"
[dependencies.ri-agent-graph]
version = "0.2.1"
[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.rust]
unsafe_code = "deny"