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