import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; /** * Create the Long Tail MCP Workflows server. * * Exposes compiled YAML workflows — hardened, deterministic pipelines * that were originally discovered through dynamic MCP triage — as * invocable MCP tools. * * Tools: * - list_workflows — discover available compiled workflows * - get_workflow — inspect a workflow's schema and activity manifest * - invoke_workflow — run a workflow (sync or async) */ export declare function createWorkflowServer(options?: { name?: string; }): Promise; /** * Get the current workflow MCP server instance. */ export declare function getWorkflowServer(): McpServer | null; /** * Stop the workflow MCP server. */ export declare function stopWorkflowServer(): Promise;