import { z } from "zod"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{ /** Slug or alias (name, acronym). Case/punctuation-insensitive for aliases. */ project: z.ZodString; /** How many recent items to include. 0 to skip the Engram query entirely. */ recentLimit: z.ZodDefault; /** Days to look back for recent activity. */ recentDays: z.ZodDefault; }, "strip", z.ZodTypeAny, { project: string; recentLimit: number; recentDays: number; }, { project: string; recentLimit?: number | undefined; recentDays?: number | undefined; }>; interface ActivityItem { id: string; type?: string; title?: string; preview: string; date?: string; source?: string; url?: string; } interface Output { found: boolean; project?: { slug: string; name: string; description: string; active: boolean; aliases: string[]; sources: Record; }; people?: Array<{ slug: string; name: string; email: string; role?: string; }>; recent_activity: ActivityItem[]; hint?: string; } export declare const getProjectContext: McpTool; export {}; //# sourceMappingURL=get-project-context.d.ts.map