Skip to main content

khive_mcp/
lib.rs

1//! khive MCP server library — exports the server, serve bootstrap, transports,
2//! args, pack bootstrap, and tool parameter types for the single `request` tool.
3//!
4//! The binary frontend is `kkernel mcp`; this crate ships no binary of its own.
5
6pub mod args;
7#[cfg(unix)]
8pub mod daemon;
9pub mod pack;
10pub mod serve;
11pub mod server;
12pub mod tools;
13pub mod transport;