@kimsungwhee/apple-docs-mcp
Version:
MCP server for Apple Developer Documentation - Search iOS/macOS/SwiftUI/UIKit docs, WWDC videos, Swift/Objective-C APIs & code examples in Claude, Cursor & AI assistants
15 lines • 544 B
TypeScript
import { z } from 'zod';
export declare const getDocumentationUpdatesSchema: z.ZodObject<{
category: z.ZodDefault<z.ZodEnum<{
all: "all";
wwdc: "wwdc";
technology: "technology";
"release-notes": "release-notes";
}>>;
technology: z.ZodOptional<z.ZodString>;
year: z.ZodOptional<z.ZodString>;
searchQuery: z.ZodOptional<z.ZodString>;
includeBeta: z.ZodDefault<z.ZodBoolean>;
limit: z.ZodDefault<z.ZodNumber>;
}, z.core.$strip>;
//# sourceMappingURL=documentation-updates.schema.d.ts.map