mermaid-cli 0.7.1

Open-source AI pair programmer with agentic capabilities. Local-first with Ollama, native tool calling, and beautiful TUI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// MCP (Model Context Protocol) client integration — Gateway
///
/// Connects to external MCP servers and exposes their tools to the model.
/// Servers are configured in config.toml and spawned as child processes.
pub mod add;
mod client;
pub mod manager_ref;
mod registry;
mod server_manager;
mod transport;

pub use add::{add_server, remove_server};
pub use client::{ContentBlock, McpClient, McpToolDef, McpToolResult};
pub use server_manager::McpServerManager;