mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
Add an experimental MCP on memories This must never be used and is only here for testing purpose --------- Co-authored-by: Codex <noreply@openai.com>
15 lines
360 B
Rust
15 lines
360 B
Rust
//! MCP access to Codex memories.
|
|
//!
|
|
//! This crate only exposes tools for discovering and reading memory files. The
|
|
//! policy that tells a model when to use those tools is injected elsewhere.
|
|
|
|
pub mod backend;
|
|
pub mod local;
|
|
|
|
mod schema;
|
|
mod server;
|
|
|
|
pub use local::LocalMemoriesBackend;
|
|
pub use server::MemoriesMcpServer;
|
|
pub use server::run_stdio_server;
|