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
platform-compatibility.schema.ts•440 B
import { z } from 'zod';
export const getPlatformCompatibilitySchema = z.object({
apiUrl: z.string().describe('The Apple Developer Documentation API URL to analyze platform compatibility for'),
compareMode: z.enum(['single', 'framework']).default('single').describe('Analysis mode: single API or entire framework comparison'),
includeRelated: z.boolean().default(false).describe('Include platform compatibility of related APIs'),
});