do-memory-mcp 0.1.29

Model Context Protocol (MCP) server for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Episode Checkpoint MCP Tools (ADR-044 Feature 3)
//!
//! This module provides MCP tools for creating checkpoints, generating handoff packs,
//! and resuming work from handoff packs.

mod tool;
mod types;

pub use tool::CheckpointTools;
pub use types::{
    CheckpointEpisodeInput, CheckpointEpisodeOutput, GetHandoffPackInput, GetHandoffPackOutput,
    ResumeFromHandoffInput, ResumeFromHandoffOutput,
};