mcp-config
Version:
CLI client to edit MCP server configurations
16 lines (15 loc) • 472 B
TypeScript
import { MCPServer, MCPConfig } from '../types/types.js';
/**
* Prompt the user to select which activated servers to edit and what action to perform
*/
export declare const selectServerToEdit: (mcpConfig: MCPConfig) => Promise<{
server: string;
action: string;
} | null>;
/**
* Add a new MCP server by selecting from available server configs
*/
export declare const addNewServer: () => Promise<{
serverName: string;
serverConfig: MCPServer;
} | null>;