Skip to main content

mcp_context_server/
lib.rs

1//! MCP server for the Context Engine.
2//!
3//! Exposes `context.resolve`, `context.list_caches`, and `context.inspect_cache`
4//! tools over JSON-RPC 2.0 stdio transport, compatible with any MCP-aware AI agent.
5//!
6//! See <https://github.com/contextenginehq/context-engine> for the full platform.
7
8pub mod config;
9pub mod handlers;
10pub mod protocol;
11pub mod server;
12
13pub mod schema;