We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oculairmedia/Letta-MCP-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
event.rs•381 B
#[cfg(not(feature = "std"))]
use alloc::string::String;
use core::time::Duration;
/// An Event
#[derive(Default, Debug, Eq, PartialEq, Clone)]
pub struct Event {
/// The event name if given
pub event: String,
/// The event data
pub data: String,
/// The event id if given
pub id: String,
/// Retry duration if given
pub retry: Option<Duration>,
}