sacp-proxy 3.0.0

Framework for building SACP proxy components
Documentation
use schemars::JsonSchema;
use serde::{Serialize, de::DeserializeOwned};

/// Defines an MCP tool.
pub trait McpTool: Send + Sync {
    /// The type of input the tool accepts.
    type Input: JsonSchema + DeserializeOwned + Send + 'static;

    /// The type of output the tool produces.
    type Output: JsonSchema + Serialize + Send + 'static;

    /// The name of the tool
    fn name(&self) -> String;

    /// A description of what the tool does
    fn description(&self) -> String;

    /// A human-readable title for the tool
    fn title(&self) -> Option<String> {
        None
    }

    /// Define the tool's behavior. You can implement this with an `async fn`.
    fn call_tool(
        &self,
        input: Self::Input,
        context: super::McpContext,
    ) -> impl Future<Output = Result<Self::Output, sacp::Error>> + Send;
}