origin-mcp 0.1.1

MCP server for Origin — personal agent memory layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Wire types for the Origin HTTP API.
//!
//! All types live in the published `origin-types` crate. This module exists
//! only to provide a stable import path (`crate::types::...`) during the
//! cross-repo refactor; later PRs may remove the module entirely and import
//! `origin_types::*` at call sites directly.

pub use origin_types::memory::SearchResult;
pub use origin_types::requests::{ChatContextRequest, SearchMemoryRequest, StoreMemoryRequest};
pub use origin_types::responses::{
    ChatContextResponse, DeleteResponse, SearchMemoryResponse, StoreMemoryResponse,
};