crabtalk 0.0.21

Crabtalk library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! MCP bridge — subprocess and HTTP transport for MCP tool servers.
//!
//! Daemon-owned because MCP involves spawning child processes, opening
//! HTTP connections, and scanning the filesystem for port files. Runtime
//! accesses MCP through the [`Host`](runtime::Env) trait.

pub use {bridge::McpBridge, config::McpServerConfig, handler::McpHandler};

mod bridge;
mod client;
pub mod config;
pub mod dispatch;
mod handler;
pub mod tool;