UNPKG

askexperts

Version:

AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol

23 lines (22 loc) 546 B
import { Command } from "commander"; /** * Options for the MCP server command */ export interface McpCommandOptions { wallet?: string; relays?: string[]; remote?: boolean; url?: string; } /** * Start the MCP server with the given options * * @param options Command line options */ export declare function startMcpServer(options: McpCommandOptions): Promise<void>; /** * Register the MCP command with the CLI * * @param program The commander program */ export declare function registerMcpCommand(program: Command): void;