We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MikkoParkkola/mcp-gateway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mod.rs•322 B
//! Security modules for the MCP gateway.
//!
//! Provides input sanitization, SSRF protection, and tool access policies.
pub mod policy;
pub mod sanitize;
pub mod ssrf;
pub use policy::{ToolPolicy, ToolPolicyConfig};
pub use sanitize::{sanitize_json_value, sanitize_optional_json};
pub use ssrf::validate_url_not_ssrf;