[package]
edition = "2024"
rust-version = "1.90"
name = "neuron-mcp"
version = "0.3.0"
build = false
exclude = ["CLAUDE.md"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Model Context Protocol (MCP) client and server in Rust — stdio, HTTP transports, and bridging to the Tool trait"
homepage = "https://github.com/secbear/neuron"
documentation = "https://docs.rs/neuron-mcp"
readme = "README.md"
keywords = [
"ai",
"agent",
"mcp",
"llm",
"tools",
]
categories = [
"science",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/secbear/neuron"
[lib]
name = "neuron_mcp"
path = "src/lib.rs"
[[example]]
name = "mcp_client"
path = "examples/mcp_client.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.neuron-tool]
version = "0.3.0"
[dependencies.neuron-types]
version = "0.3.0"
[dependencies.rmcp]
version = "0.16"
features = [
"client",
"server",
"transport-io",
"transport-child-process",
"transport-streamable-http-client",
"transport-streamable-http-client-reqwest",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"sync",
"process",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"sync",
"macros",
"rt-multi-thread",
]