We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#![feature(try_blocks)]
#![feature(type_alias_impl_trait)]
#![feature(impl_trait_in_assoc_type)]
mod broker;
mod encryptor;
mod legacy_encryptor;
mod metrics;
mod secret;
#[cfg(any(test, feature = "testing"))]
pub mod testing;
#[cfg(test)]
mod tests;
pub use sync_types::UserIdentityAttributes;
pub use self::{
broker::{
AdminIdentity,
AdminIdentityPrincipal,
CoreIdTokenWithCustomClaims,
CustomClaims,
FunctionRunnerKeyBroker,
GetFileAuthorization,
Identity,
KeyBroker,
StoreFileAuthorization,
SystemKey,
UserIdentity,
},
encryptor::Encryptor,
legacy_encryptor::LegacyEncryptor,
secret::{
InstanceSecret,
Secret,
},
};
pub const DEV_INSTANCE_NAME: &str = include_str!("../dev/instance_name.txt");
pub const DEV_SECRET: &str = include_str!("../dev/secret.txt");