@wonderwhy-er/desktop-commander
Version:
MCP server for terminal operations and file editing
19 lines (18 loc) • 401 B
TypeScript
export declare function blockCommand(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function unblockCommand(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function listBlockedCommands(): Promise<{
content: {
type: string;
text: string;
}[];
}>;