Skip to main content

mcp_project/
lib.rs

1//! Project MCP Server library surface.
2//!
3//! Exposes the domain types, the in-memory project store, and the MCP server so
4//! integration tests can drive the same entry points the JSON-RPC layer uses.
5
6pub mod server;
7pub mod store;
8pub mod types;