export interface McpSetupDocOptions { /** Full URL of the MCP endpoint, e.g. `https://host/mcp`. */ mcpUrl: string; /** One sentence telling the agent where the user gets their key. */ keySource: string; /** Environment variable the config blocks read the key from. */ keyEnvVar?: string; /** Idle ceiling this server enforces, in minutes. */ maxIdleMinutes?: number; /** One sentence on what a session costs, when it costs anything. */ costNote?: string; } /** Setup instructions an agent fetches to configure itself against this server. * Served unauthenticated at `GET /mcp/setup.md`, so it must never contain a key. */ export declare function mcpSetupDoc(opts: McpSetupDocOptions): string; //# sourceMappingURL=setup-doc.d.ts.map