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
related-apis.schema.ts•443 B
import { z } from 'zod';
export const getRelatedApisSchema = z.object({
apiUrl: z.string().describe('The Apple Developer Documentation API URL to find related APIs for'),
includeInherited: z.boolean().default(true).describe('Include inherited APIs'),
includeConformance: z.boolean().default(true).describe('Include conformance relationships'),
includeSeeAlso: z.boolean().default(true).describe('Include "See Also" related APIs'),
});