@wonderwhy-er/desktop-commander
Version:
MCP server for terminal operations and file editing
25 lines (24 loc) • 529 B
TypeScript
export declare function executeCommand(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function readOutput(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function forceTerminate(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function listSessions(): Promise<{
content: {
type: string;
text: string;
}[];
}>;