mcp-use TypeScript API
    Preparing search index...

    Interface RequestBag

    Per-request values stashed before the MCP handler runs.

    interface RequestBag {
        authInfo?: AuthInfo;
        honoContext?: Context<Env, any, {}>;
        parsedBody?: unknown;
    }
    Index
    authInfo?: AuthInfo

    Verified OAuth identity forwarded to the SDK handler.

    honoContext?: Context<Env, any, {}>

    Hono context associated with this request while it traverses the app.

    parsedBody?: unknown

    Parsed JSON body when the JSON middleware ran first.