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
lib.rs•374 B
mod app_state;
mod config;
mod extract;
mod models;
mod routes;
mod s3;
pub mod server;
mod whoami;
pub use crate::{
config::{
Config,
ConfigBuilder,
ConfigError,
ConfigFile,
StandardConfig,
StandardConfigFile,
detect_and_configure_development,
},
server::{
Server,
ServerError,
},
};