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
14
//! Recommendation Feedback MCP Tools
//!
//! This module provides MCP tools for recording and querying recommendation
//! feedback, enabling the system to learn which recommendations help agents succeed.

mod tool;
mod types;

pub use tool::RecommendationFeedbackTools;
pub use types::{
    RecommendationStatsOutput, RecordRecommendationFeedbackInput,
    RecordRecommendationFeedbackOutput, RecordRecommendationSessionInput,
    RecordRecommendationSessionOutput, TaskOutcomeJson,
};