/** * A request reached the configured MCP server, but no response from the * requested operation was received because that server redirected it. * * This stays an internal transport-to-adapter signal. The public tool result * carries the stable, serializable outcome fields instead of exposing an * Error subclass as API. */ export declare class MCPHttpRedirectError extends Error { readonly status: number; readonly requestMethod?: string | undefined; readonly code = "mcp_http_redirect_refused"; readonly remoteOutcomeUnknown: boolean; constructor(status: number, requestMethod?: string | undefined); } export declare function refuseMcpHttpRedirect(response: Response, requestMethod?: string): void; //# sourceMappingURL=http-redirect.d.ts.map