@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.
23 lines • 626 B
TypeScript
/**
* Edit Bundle Tool
* Edit an existing bundle's properties (name, description, config, tags)
*/
import { MCPTool, ToolResult } from '../types.js';
/**
* Edit bundle arguments
*/
export interface EditBundleArgs {
bundle_id: string;
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 editBundleTool: MCPTool<EditBundleArgs, ToolResult>;
//# sourceMappingURL=edit-bundle.d.ts.map