import { z } from "zod"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; interface WorkspaceRow { slug: string; path: string; active: boolean; } interface Output { workspaces: WorkspaceRow[]; active?: string; note?: string; } /** * Read-only list of all Cortex workspaces on this machine. Safe to * call from any Claude surface — no state change, no side effects. */ export declare const listWorkspacesTool: McpTool; export {}; //# sourceMappingURL=list-workspaces.d.ts.map