koda-core 0.2.13

Core engine for the Koda AI coding agent (macOS and Linux only)
Documentation
//! MCP client — connect to external MCP servers (#662).
//!
//! Koda can act as an MCP **client**, discovering and invoking tools exposed
//! by third-party MCP servers (Playwright, databases, Slack, etc.).
//!
//! ## Architecture
//!
//! ```text
//! ┌─────────────────┐     stdio/http      ┌──────────────────┐
//! │  McpManager      │ ◄────────────────► │  MCP Server      │
//! │  (owns clients)  │                    │  (e.g. Playwright)│
//! └────────┬────────┘                    └──────────────────┘
//!//!    ToolRegistry
//!    (server__tool naming)
//! ```
//!
//! ## Config storage
//!
//! MCP server configs are stored globally in the SQLite `kv_store` table
//! under the `mcp:` key prefix. Managed via `/mcp add`, `/mcp add-http`,
//! `/mcp remove`, and `/mcp list` slash commands.
//!
//! Supports both stdio (child process) and HTTP (Streamable HTTP) transports.
//!
//! ## Design decisions (#662)
//!
//! - **Global scope (user-level)** — not per-project. Accepted trade-off.
//! - **Tool annotations → ToolEffect** — `destructiveHint`/`readOnlyHint`
//!   map directly to the TrustMode approval matrix.
//! - **Resources** — not yet implemented.

/// MCP server configuration types and database persistence.
pub mod config;

/// Single MCP server client — wraps rmcp connection lifecycle.
pub mod client;

/// Multi-server connection manager — parallel startup, tool discovery.
pub mod manager;

/// Bridge MCP tools into Koda's ToolRegistry (naming, classification).
pub mod tool_bridge;

pub use config::McpServerConfig;
pub use manager::McpManager;
pub use tool_bridge::{
    classify_mcp_tool, format_mcp_tool_name, is_mcp_tool_name, parse_mcp_tool_name,
};