[package]
edition = "2024"
rust-version = "1.92"
name = "agentkit-mcp"
version = "0.9.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Model Context Protocol integration for agentkit, including transports, auth, and adapters."
homepage = "https://github.com/danielkov/agentkit"
readme = "README.md"
license = "MIT"
repository = "https://github.com/danielkov/agentkit"
resolver = "2"
[features]
default = []
[lib]
name = "agentkit_mcp"
path = "src/lib.rs"
[[test]]
name = "dynamic_http_client"
path = "tests/dynamic_http_client.rs"
[[test]]
name = "in_memory"
path = "tests/in_memory.rs"
[dependencies.agentkit-capabilities]
version = "0.9.1"
[dependencies.agentkit-core]
version = "0.9.1"
[dependencies.agentkit-tools-core]
version = "0.9.1"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.http]
version = "1"
[dependencies.reqwest]
version = "0.13.2"
features = [
"json",
"rustls",
"stream",
]
default-features = false
[dependencies.rmcp]
version = "1.5.0"
features = [
"client",
"transport-child-process",
"transport-streamable-http-client-reqwest",
"reqwest",
"auth",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.sse-stream]
version = "0.2"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.47.1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.axum]
version = "0.8"
[dev-dependencies.rmcp]
version = "1.5.0"
features = [
"client",
"server",
"transport-async-rw",
"macros",
"elicitation",
]
default-features = false
[dev-dependencies.tokio]
version = "1.47.1"
features = [
"macros",
"rt-multi-thread",
"macros",
"rt-multi-thread",
"io-util",
"time",
"net",
]