UNPKG

@grebyn/toolflow-mcp-server

Version:

MCP server for managing other MCP servers - discover, install, organize into bundles, and automate with workflows. Uses StreamableHTTP transport with dual OAuth/API key authentication.

22 lines 595 B
/** * Create Bundle Tool * Save a collection of MCP servers as a reusable bundle */ import { MCPTool, ToolResult } from '../types.js'; /** * Create bundle arguments */ export interface CreateBundleArgs { name: string; description: string; servers: Record<string, { command: string; args: string[]; env?: Record<string, string>; type?: 'stdio' | 'http' | 'sse'; }>; tags?: string[]; install_commands?: string[]; } export declare const createBundleTool: MCPTool<CreateBundleArgs, ToolResult>; //# sourceMappingURL=create-bundle.d.ts.map