@backblaze-labs/b2-mcp
    Preparing search index...

    Interface B2AuthResponse

    Normalized response from B2 authorization.

    interface B2AuthResponse {
        absoluteMinimumPartSize: number;
        accountId: string;
        allowedBuckets?: B2AuthorizedBucket[] | null;
        apiUrl: string;
        authorizationToken: string;
        capabilities: string[];
        downloadUrl: string;
        recommendedPartSize: number;
        s3ApiUrl: string;
    }
    Index
    absoluteMinimumPartSize: number

    Absolute minimum multipart upload part size in bytes.

    accountId: string

    B2 account ID authorized for the current application key.

    allowedBuckets?: B2AuthorizedBucket[] | null

    Bucket restrictions from authorize, or null when the key is unrestricted.

    apiUrl: string

    Native B2 API base URL returned by authorization.

    authorizationToken: string

    Native B2 authorization token for control-plane API calls.

    capabilities: string[]

    Capabilities granted to this key (from the v4 authorize allowed object). Drives capability-aware tool registration. Empty array if unknown.

    downloadUrl: string

    B2 download URL returned by authorization.

    recommendedPartSize: number

    Recommended multipart upload part size in bytes.

    s3ApiUrl: string

    S3-compatible API endpoint returned by authorization.