UNPKG

@wonderwhy-er/desktop-commander

Version:

MCP server for terminal operations and file editing

26 lines (25 loc) 449 B
/** * Get the entire config */ export declare function getConfig(): Promise<{ content: { type: string; text: string; }[]; }>; /** * Set a specific config value */ export declare function setConfigValue(args: unknown): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>;