do-memory-mcp 0.1.31

Model Context Protocol (MCP) server for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # External Signal Provider MCP Tools
//!
//! This module contains MCP tools for configuring and managing external
//! signal providers (like AgentFS) that feed into the reward system.

mod tool;
mod types;

pub use tool::{configure_agentfs_tool, external_signal_status_tool, test_agentfs_connection_tool};
pub use types::{
    ConfigureAgentFsInput, ConfigureAgentFsOutput, ExternalSignalStatusInput,
    ExternalSignalStatusOutput, ProviderStatus, TestAgentFsConnectionInput,
    TestAgentFsConnectionOutput,
};