import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { Tool } from "langchain/tools";
/**
 * Creates an MCP server from a set of actions
 */
export declare function createMcpServer(tools: Tool[], options: {
    name: string;
    version: string;
}): McpServer;
