@pimzino/spec-workflow-mcp
Version:
MCP server for spec-driven development workflow with real-time web dashboard
15 lines • 435 B
TypeScript
interface SessionData {
dashboardUrl: string;
startedAt: string;
pid: number;
}
export declare class SessionManager {
private projectPath;
private sessionFilePath;
constructor(projectPath: string);
createSession(dashboardUrl: string): Promise<void>;
getSession(): Promise<SessionData | null>;
getDashboardUrl(): Promise<string | undefined>;
}
export {};
//# sourceMappingURL=session-manager.d.ts.map