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
//! As the user adds and removes values from the database, the system tracks
//! [`Shape`]s, a form of inferred type describing the set of values currently
//! present. This shape tracking happens without user intervention, and it
//! continues even if the user enforces a schema.
//!
//! Given a sequence of values, a shape is formally an approximate multiset of
//! these values. Storing all of the values would be far too expensive in memory
//! and update time, so we instead store a succinct representation of the, well,
//! shape of the values. To support adding and removing values
//! from the multiset, [`Shape`] maintains a counter of the number of values in
//! addition to [`ShapeEnum`].
mod dashboard;
pub mod reduced;
#[cfg(test)]
mod tests;
pub use self::dashboard::dashboard_shape_json;