Files
bigwo/dev-assistant-mcp/dist/tools/devServer.d.ts

39 lines
966 B
TypeScript
Raw Permalink Normal View History

2026-03-12 12:47:56 +08:00
export declare const devServerTool: {
name: string;
description: string;
inputSchema: {
type: "object";
properties: {
project_path: {
type: string;
description: string;
};
action: {
type: string;
description: string;
enum: string[];
};
command: {
type: string;
description: string;
};
name: {
type: string;
description: string;
};
tail: {
type: string;
description: string;
};
};
required: string[];
};
};
export declare function executeDevServer(args: {
project_path?: string;
action: string;
command?: string;
name?: string;
tail?: number;
}): Promise<string>;
//# sourceMappingURL=devServer.d.ts.map