UNPKG

@simon-archer/designbot-mcp

Version:

A lightweight MCP proxy server for designbot.deno.dev/chat

10 lines (9 loc) 294 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; export interface McpServerOptions { name?: string; version?: string; } /** * Start an MCP server with a designbot-chat tool */ export declare function startMcpServer(options?: McpServerOptions): Promise<McpServer>;