We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/awslabs/iam-policy-autopilot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mod.rs•567 B
//! Shims around primitives which will eventually need replacements for Wasm
// Native filesystem provider implementation
pub(crate) mod filesystem;
// Native JSON provider implementation
pub(crate) mod json;
// These type aliases are remnants of supporting compilation to wasm.
// We can use these eventually for conditional compilation again.
/// Type alias for the filesystem provider implementation.
pub type FileSystemProvider = filesystem::FileSystemProvider;
/// Type alias for the JSON provider implementation.
pub type JsonProvider = json::JsonProvider;