MCPcopy
hub / github.com/agent-infra/sandbox / BaseRequestOptions

Interface BaseRequestOptions

sdk/js/src/BaseClient.ts:22–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22export interface BaseRequestOptions {
23 /** The maximum time to wait for a response in seconds. */
24 timeoutInSeconds?: number;
25 /** The number of times to retry the request. Defaults to 2. */
26 maxRetries?: number;
27 /** A hook to abort the request. */
28 abortSignal?: AbortSignal;
29 /** Additional query string parameters to include in the request. */
30 queryParams?: Record<string, unknown>;
31 /** Additional headers to include in the request. */
32 headers?: Record<string, string | core.Supplier<string | null | undefined> | null | undefined>;
33}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…