//! MCP `memory_stats` tool parameter definition.
useschemars::JsonSchema;useserde::{Deserialize, Serialize};/// Parameters for the `memory_stats` MCP tool.
#[derive(Debug, Serialize, Deserialize, JsonSchema)]pubstructMemoryStatsParams{/// Optional group name to filter statistics by.
#[schemars(description ="Optional group to filter stats by")]pubgroup:Option<String>,
}