UNPKG

@genwave/svgmaker-mcp

Version:

MCP server for generating, editing, and converting SVG images using SVGMaker API

34 lines (33 loc) 884 B
import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { RequestMeta } from '@modelcontextprotocol/sdk/types.js'; export declare const editToolDefinition: { name: string; description: string; inputSchema: import("zod-to-json-schema").JsonSchema7Type & { $schema?: string | undefined; definitions?: { [key: string]: import("zod-to-json-schema").JsonSchema7Type; } | undefined; }; }; export declare function handleEditTool(server: Server, request: { params: { name: string; _meta?: RequestMeta; arguments?: any; }; }): Promise<{ content: { [x: string]: unknown; type: "text"; text: string; }[]; isError?: undefined; } | { isError: boolean; content: { [x: string]: unknown; type: "text"; text: string; }[]; }>;