We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/secxena/mcp-reticle'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mod.rs•426 B
//! Application configuration
//!
//! This module defines configuration types and default values:
//! - `app_config`: Configuration structure
//! - `defaults`: Default configuration values
pub mod app_config;
pub mod defaults;
// Re-export configuration types
pub use app_config::AppConfig;
// SecurityConfig is part of the public API for external configuration
#[allow(unused_imports)]
pub use app_config::SecurityConfig;