[package]
edition = "2024"
name = "agentchan"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server that lets one coding agent talk to another: Claude Code, Codex or Grok"
readme = "README.md"
keywords = [
"mcp",
"claude",
"codex",
"grok",
"agent",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/damejeras/agentchan"
[[bin]]
name = "agentchan"
path = "src/main.rs"
[[test]]
name = "agentchan"
path = "tests/agentchan.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.libc]
version = "0.2.189"
[dependencies.rmcp]
version = "3.4.1"
features = [
"server",
"transport-io",
"macros",
]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.tokio]
version = "1.53.1"
features = [
"macros",
"rt-multi-thread",
"process",
"io-util",
"sync",
"time",
]
[dev-dependencies.rmcp]
version = "3.4.1"
features = [
"client",
"transport-child-process",
]
[dev-dependencies.tempfile]
version = "3.27.0"