FrontPanel Platform API - v6.1.0
    Preparing search index...

    Interface HandlerContext

    Context passed as the second argument to every MCP handler. Currently carries only an AbortSignal; reserved as a stable extensibility point for future fields (deadline, telemetry, etc.) without breaking existing handlers.

    interface HandlerContext {
        signal: AbortSignal;
    }
    Index

    Properties

    Properties

    signal: AbortSignal

    Aborts when the MCP call is cancelled (client disconnect, timeout, app close). Cooperative — handlers MAY check it; the dispatcher does not force-kill.