@kinetixarts/server-craft-it
Version:
Craft IT - Model Context Protocol (MCP) compliant Server for AI-Powered Asset Generation using Gemini
14 lines (13 loc) • 385 B
TypeScript
import { FastMCP } from "fastmcp";
/**
* Server configuration interface
*/
export interface ServerConfig {
/**
* Path where generated images will be saved
* Takes precedence over environment variable and default path
*/
outputPath?: string | null;
}
declare function startServer(config?: ServerConfig): Promise<FastMCP<undefined>>;
export default startServer;