@makehq/sdk
    Preparing search index...

    Type Alias SDKEndpointAnnotations

    MCP-inspired behavior hints for an Endpoint. Only these keys are persisted; unknown keys are stripped.

    type SDKEndpointAnnotations = {
        destructiveHint?: boolean;
        idempotentHint?: boolean;
        openWorldHint?: boolean;
        readOnlyHint?: boolean;
    }
    Index

    Properties

    destructiveHint?: boolean

    If true, the Endpoint may perform destructive updates; if false, updates are only additive.

    idempotentHint?: boolean

    If true, repeated calls with the same arguments have no additional effect.

    openWorldHint?: boolean

    If true, the Endpoint may interact with an "open world" of external entities.

    readOnlyHint?: boolean

    If true, the Endpoint does not modify its environment.