UNPKG

mcp-color-convert

Version:

Comprehensive color conversion, manipulation, analysis, and accessibility MCP server

35 lines 861 B
#!/usr/bin/env node import { z } from "zod"; export declare const configSchema: z.ZodObject<{ debug: z.ZodDefault<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { debug: boolean; }, { debug?: boolean | undefined; }>; export default function createServer({ config }: { config?: any; }): import("@modelcontextprotocol/sdk/server").Server<{ method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; } | undefined; } | undefined; }, { method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; } | undefined; } | undefined; }, { [x: string]: unknown; _meta?: { [x: string]: unknown; } | undefined; }>; //# sourceMappingURL=index.d.ts.map