UNPKG

@bratcliffe909/mcp-server-segmind

Version:

Model Context Protocol server for Segmind API - Generate images and videos using AI models

9 lines 575 B
import { CallToolResult } from '@modelcontextprotocol/sdk/types.js'; import { BaseTool } from './base.js'; export declare class PrepareImageTool extends BaseTool { protected readonly name = "prepare_image"; protected readonly description = "Prepare a local image for use with other tools. Returns a temporary image ID instead of base64 to avoid context limits. Use this ID with transform_image or enhance_image."; execute(params: any): Promise<CallToolResult>; } export declare const prepareImageTool: PrepareImageTool; //# sourceMappingURL=prepare-image.d.ts.map