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•698 B
//! Gateway services
//!
//! Business logic services following SOLID principles:
//! - Each service has single responsibility (SRP)
//! - Services depend on abstractions (DIP)
//! - Open for extension, closed for modification (OCP)
mod authorization;
mod client_metadata_service;
mod event_emitter;
mod grant_service;
mod notification_emitter;
mod prefix_cache;
mod space_resolver;
pub use authorization::AuthorizationService;
pub use client_metadata_service::ClientMetadataService;
pub use event_emitter::EventEmitter;
pub use grant_service::GrantService;
pub use notification_emitter::NotificationEmitter;
pub use prefix_cache::PrefixCacheService;
pub use space_resolver::SpaceResolverService;