We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/recoupable/mcp-vercel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pagination.ts•309 B
import { z } from "zod";
export const PaginationParams = {
page: z
.number()
.min(1)
.optional()
.describe("The page number to retrieve (default: 1)"),
limit: z
.number()
.min(1)
.optional()
.describe("The number of records per page (default: 20, max: 100)"),
} as const;