UNPKG

@genwave/svgmaker-mcp

Version:

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

6 lines (5 loc) 521 B
import { Types as SVGMakerTypes } from '@genwave/svgmaker-sdk'; export declare function initializeSvgmakerService(apiKey: string, rateLimitRpmStr?: string, baseUrl?: string): void; export declare function generateSVG(params: SVGMakerTypes.GenerateParams): Promise<SVGMakerTypes.GenerateResponse>; export declare function editSVG(params: SVGMakerTypes.EditParams): Promise<SVGMakerTypes.EditResponse>; export declare function convertImageToSVG(params: SVGMakerTypes.ConvertParams): Promise<SVGMakerTypes.ConvertResponse>;