memory-mcp 0.6.0

MCP server for semantic memory — pure-Rust embeddings, vector search, git-backed storage
Documentation
use thiserror::Error;

/// Errors produced by the memory engine.
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum MemoryError {
    /// An operation on the git-backed store failed.
    #[error("git error: {0}")]
    Git(#[from] git2::Error),

    /// The embedding backend failed to produce vectors.
    #[error("embedding error: {0}")]
    Embedding(String),

    /// The vector index could not complete the requested operation.
    #[error("index error: {0}")]
    Index(String),

    /// A filesystem I/O error occurred.
    #[error("io error: {0}")]
    Io(#[from] std::io::Error),

    /// The requested memory does not exist.
    #[error("memory not found: {name}")]
    NotFound {
        /// Name of the missing memory.
        name: String,
    },

    /// The caller provided invalid parameters.
    #[error("invalid input: {reason}")]
    InvalidInput {
        /// Why the input was rejected.
        reason: String,
    },

    /// Authentication failed (e.g. bad credentials).
    #[error("auth error: {0}")]
    Auth(String),

    /// An OAuth flow error occurred.
    #[error("oauth error: {0}")]
    OAuth(String),

    /// The credential store could not read or write a token.
    #[error("token storage error: {0}")]
    TokenStorage(String),

    /// YAML serialisation or deserialisation failed.
    #[error("yaml error: {0}")]
    Yaml(#[from] serde_yaml_ng::Error),

    /// The remote server rejected one or more ref updates during push.
    #[error("push rejected: {0}")]
    PushRejected(String),

    /// A background task failed to join.
    #[error("task join error: {0}")]
    Join(String),

    /// Catch-all for unexpected internal failures.
    #[error("internal error: {0}")]
    Internal(String),
}

impl From<MemoryError> for rmcp::model::ErrorData {
    fn from(err: MemoryError) -> Self {
        let code = match &err {
            MemoryError::NotFound { .. } | MemoryError::InvalidInput { .. } => {
                rmcp::model::ErrorCode::INVALID_PARAMS
            }
            // PushRejected is a server-side policy decision (e.g. branch
            // protection), not an internal fault. No standard JSON-RPC code
            // fits precisely; INTERNAL_ERROR is the least-bad option until
            // MCP defines application-level error codes.
            _ => rmcp::model::ErrorCode::INTERNAL_ERROR,
        };
        rmcp::model::ErrorData {
            code,
            message: std::borrow::Cow::Owned(err.to_string()),
            data: None,
        }
    }
}