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
paginationLimits.ts•574 B
// The maximum number of rows read in a single transaction is higher than this number,
// but we are conservative with the max number of rows read in pagination because we may
// read other documents earlier when deciding which filters to apply.
export const maximumRowsRead = 10000;
// The maximum number of bytes read in a single transaction is higher than this number,
// but we are conservative with the max number of bytes read in pagination because we may
// read other documents earlier when deciding which filters to apply.
export const maximumBytesRead = 5000000;