UNPKG

xc-mcp

Version:

MCP server that wraps Xcode command-line tools for iOS/macOS development workflows

21 lines 679 B
export interface GetToolDocsArgs { toolName?: string; categoryName?: string; } /** * MCP tool that returns full documentation for any registered tool or category. * Enables progressive disclosure - concise descriptions in tool list, * full documentation only when explicitly requested. * * Supports: * - Tool queries: rtfm({ toolName: "xcodebuild-build" }) * - Category queries: rtfm({ categoryName: "simulator" }) * - Category overview: rtfm({}) - shows all categories */ export declare function getToolDocsTool(args: GetToolDocsArgs): Promise<{ content: { type: "text"; text: string; }[]; }>; //# sourceMappingURL=get-tool-docs.d.ts.map