We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/serverless-dna/mkdocs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
schemas.ts•343 B
import { z } from 'zod';
export const searchMkDocSchema = z.object({
search: z.string().describe('what to search for'),
version: z.string().optional().describe('version is always semantic 3 digit in the form x.y.z'),
});
export const searchMkDocSchemaWithoutVersion = z.object({
search: z.string().describe('what to search for'),
});