reasonkit_web/mcp/
mod.rs

1//! Model Context Protocol (MCP) server module
2//!
3//! This module implements the MCP server for AI agent integration,
4//! providing web sensing tools through the MCP protocol.
5
6mod server;
7mod tools;
8/// MCP protocol types
9pub mod types;
10
11pub use server::McpServer;
12pub use tools::{McpTool, ToolRegistry, AVAILABLE_TOOLS};
13pub use types::{
14    JsonRpcError, JsonRpcRequest, JsonRpcResponse, McpCapabilities, McpServerInfo,
15    McpToolDefinition, ToolCallParams, ToolCallResult, ToolContent,
16};