We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
all_versions.rs•290 B
/// Marks a type as a container over all possible versions of a message type.
pub trait AllVersions {
/// The current version of the message type.
fn version(&self) -> u64;
/// A list of all possible versions that this type supports.
fn all_versions() -> &'static [u64];
}