Skip to main content

agentic_evolve_mcp/
lib.rs

1//! AgenticEvolve MCP Server — pattern library access for any MCP-compatible LLM client.
2//!
3//! This library implements an MCP (Model Context Protocol) server that exposes
4//! AgenticEvolve pattern library functionality to any MCP-compatible LLM client.
5
6pub mod protocol;
7pub mod session;
8pub mod tools;
9pub mod transport;
10pub mod types;
11
12pub use protocol::ProtocolHandler;
13pub use session::SessionManager;
14pub use transport::StdioTransport;