/** * File Organizer MCP Server v3.4.2 * inspect_metadata Tool * * @module tools/metadata-inspection */ import { z } from "zod"; import type { ToolDefinition, ToolResponse } from "../types.js"; export declare const InspectMetadataInputSchema: z.ZodObject<{ file: z.ZodString; response_format: z.ZodDefault>; }, z.core.$strip>; export type InspectMetadataInput = z.infer; export interface MetadataInspectionResult { file: string; category: string | null; metadata: { dateTaken?: string; camera?: string; dimensions?: { width: number; height: number; }; artist?: string; album?: string; title?: string; year?: number; duration?: number; fileSize: number; fileExtension: string; lastModified: string; }; organizationPath?: string; warnings?: string[]; } export declare const inspectMetadataToolDefinition: ToolDefinition; export declare function handleInspectMetadata(args: Record): Promise; //# sourceMappingURL=metadata-inspection.d.ts.map