@squidcloud/backend
    Preparing search index...

    Interface McpAuthorizationRequest

    Represents a request to authorize an MCP request.

    interface McpAuthorizationRequest {
        auth?: McpAuthContext;
        body: any;
        headers: Record<string, string>;
        queryParams: Record<string, string>;
    }
    Index

    Properties

    Validated auth context, present when this MCP request passed OAuth validation.

    body: any

    The parsed body of the webhook request.

    headers: Record<string, string>

    A record of HTTP headers included in the webhook request.

    queryParams: Record<string, string>

    A record of query parameters included in the webhook request.