We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kimsungwhee/apple-docs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
search.schema.ts•322 B
import { z } from 'zod';
export const searchAppleDocsSchema = z.object({
query: z.string().describe('Search query for Apple Developer Documentation'),
type: z.enum(['all', 'documentation', 'sample']).default('all')
.describe('Type of content to search for (documentation=API reference, sample=code samples)'),
});