[dependencies.mcpkit-client]
version = "0.1.0"
[dependencies.mcpkit-core]
version = "0.1.0"
[dependencies.mcpkit-macros]
version = "0.1.0"
[dependencies.mcpkit-server]
version = "0.1.0"
[dependencies.mcpkit-transport]
version = "0.1.0"
[dev-dependencies.axum]
version = "0.7"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.reqwest]
default-features = false
features = ["json", "rustls-tls", "stream"]
version = "0.12"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros", "net", "time"]
version = "1"
[dev-dependencies.tokio-tungstenite]
features = ["rustls-tls-webpki-roots"]
version = "0.24"
[features]
client = []
default = ["server", "client", "tokio-runtime"]
full = ["websocket", "http"]
http = ["mcpkit-transport/http"]
server = []
tokio-runtime = ["mcpkit-transport/tokio-runtime", "mcpkit-server/tokio-runtime", "mcpkit-client/tokio-runtime"]
websocket = ["mcpkit-transport/websocket"]
[lib]
name = "mcpkit"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "network-programming"]
description = "Rust SDK for the Model Context Protocol (MCP)"
edition = "2021"
keywords = ["mcp", "mcp-protocol", "ai", "llm"]
license = "MIT OR Apache-2.0"
name = "mcpkit"
readme = "README.md"
repository = "https://github.com/praxislabs/mcpkit"
rust-version = "1.75"
version = "0.1.0"
[[test]]
name = "capabilities_compliance"
path = "tests/capabilities_compliance.rs"
[[test]]
name = "capability_negotiation_compatibility"
path = "tests/capability_negotiation_compatibility.rs"
[[test]]
name = "http_e2e"
path = "tests/http_e2e.rs"
[[test]]
name = "initialization_compliance"
path = "tests/initialization_compliance.rs"
[[test]]
name = "json_rpc_compliance"
path = "tests/json_rpc_compliance.rs"
[[test]]
name = "oauth_integration"
path = "tests/oauth_integration.rs"
[[test]]
name = "prompts_integration"
path = "tests/prompts_integration.rs"
[[test]]
name = "resources_integration"
path = "tests/resources_integration.rs"
[[test]]
name = "tool_schema_compatibility"
path = "tests/tool_schema_compatibility.rs"
[[test]]
name = "tools_integration"
path = "tests/tools_integration.rs"
[[test]]
name = "transport_e2e"
path = "tests/transport_e2e.rs"
[[test]]
name = "websocket_e2e"
path = "tests/websocket_e2e.rs"