/** * MCP Tool: optimize_content * Generate specific, actionable optimization instructions for a page * based on its keyword audit results. * * Workflow: * 1. Runs content audit for the page (fetches HTML, analyzes keywords) * 2. For each failing check, generates fix instructions * 3. Returns structured instructions the AI agent can execute * * The AI agent reads the instructions and modifies source files. * This tool provides the "what to fix", the agent provides the "how". */ import { z } from 'zod'; export declare const OptimizeContentInput: z.ZodObject<{ domain: z.ZodOptional; project_id: z.ZodOptional; url_path: z.ZodString; }, "strip", z.ZodTypeAny, { url_path: string; domain?: string | undefined; project_id?: string | undefined; }, { url_path: string; domain?: string | undefined; project_id?: string | undefined; }>; export type OptimizeContentParams = z.infer; export declare function optimizeContent(params: OptimizeContentParams): Promise; //# sourceMappingURL=optimize-content.d.ts.map