khive-mcp 0.2.11

khive MCP server library — served via the kkernel binary
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! khive MCP server library — exports the server, serve bootstrap, transports,
//! args, pack bootstrap, and tool parameter types for the single `request` tool.
//!
//! The binary frontend is `kkernel mcp`; this crate ships no binary of its own.

pub mod args;
#[cfg(unix)]
pub mod daemon;
pub mod pack;
pub mod serve;
pub mod server;
pub mod tools;
pub mod transport;