reasonkit-web 0.1.7

High-performance MCP server for browser automation, web capture, and content extraction. Rust-powered CDP client for AI agents.
Documentation
//! Model Context Protocol (MCP) server module
//!
//! This module implements the MCP server for AI agent integration,
//! providing web sensing tools through the MCP protocol.

mod server;
mod tools;
/// MCP transport abstraction
pub mod transport;
/// MCP protocol types
pub mod types;

pub use server::McpServer;
pub use tools::{McpTool, ToolRegistry, AVAILABLE_TOOLS};
pub use transport::{
    McpError, McpMessage, McpTransport, StdioTransport, TransportConfig, TransportError,
    TransportFactory, TransportResult, TransportStats, TransportType,
};
pub use types::{
    JsonRpcError, JsonRpcRequest, JsonRpcResponse, McpCapabilities, McpServerInfo,
    McpToolDefinition, ToolCallParams, ToolCallResult, ToolContent,
};