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•437 B
//! Application state management
//!
//! This module contains the application-wide state types that are managed
//! by Tauri and shared across commands:
//! - `app_state`: Main application state including config and proxy state
//! - `proxy_state`: Proxy lifecycle state (running, stopped, session tracking)
pub mod app_state;
pub mod proxy_state;
// Re-export state types
pub use app_state::AppState;
pub use proxy_state::ProxyState;