import { z } from 'zod'; import type { McpToolAnnotations } from './mcp-tool-annotations'; import type { McpIcon } from './mcp-icon'; export interface McpToolMetadata { name: string; description: string; title?: string; schema?: z.ZodObject; outputSchema?: z.ZodObject; aliases?: Record; annotations?: McpToolAnnotations; icons?: McpIcon[]; } //# sourceMappingURL=mcp-tool-metadata.d.ts.map