MCP Server Framework - v1.0.0
    Preparing search index...

    Interface HttpContext

    HTTP request context for structured logging. Used to correlate logs with specific HTTP requests.

    interface HttpContext {
        durationMs?: number;
        method?: string;
        path?: string;
        statusCode?: number;
    }
    Index

    Properties

    durationMs?: number

    Request duration in milliseconds

    method?: string

    HTTP method (GET, POST, etc.)

    path?: string

    Request URL path

    statusCode?: number

    Response status code