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
mod.rs•432 B
//! This module contains the future directory structure. If possible, new definitions should
//! get added here.
//!
//! Eventually everything should be moved over, and we will move this directory to the top
//! level in `src`.
cfg_if! {
if #[cfg(target_os = "linux")] {
mod linux_uapi;
pub use linux_uapi::*;
} else if #[cfg(target_os = "android")] {
mod bionic;
pub use bionic::*;
}
}