We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcpmux/mcp-mux'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mod.rs•277 B
//! MCP Server Registry
//!
//! This module defines the schema for the MCP server registry.
//! The registry can be loaded from a local JSON file or fetched from a remote API.
mod schema;
mod types;
mod validation;
pub use schema::*;
pub use types::*;
pub use validation::*;