Frodo Library - v4.0.0-42
    Preparing search index...

    Type Alias McpGenericExecutionArguments

    Generic-tool execution arguments.

    type McpGenericExecutionArguments = {
        domain: string;
        includeTotal?: boolean;
        namedArgs?: Record<string, unknown>;
        objectType: string;
        pageOffset?: number;
        pageSize?: number;
        pageToken?: string;
        positionalArgs?: unknown[];
        realm?: string;
        scope?: string;
    }
    Index

    Properties

    domain: string

    Domain key, e.g. authn.

    includeTotal?: boolean

    Optional hint to request exact totals when supported.

    namedArgs?: Record<string, unknown>

    Optional named args forwarded as a single object argument.

    objectType: string

    Object type label, e.g. Journey.

    pageOffset?: number

    Optional requested page offset hint.

    pageSize?: number

    Optional requested page size hint.

    pageToken?: string

    Optional requested page token/cursor hint.

    positionalArgs?: unknown[]

    Optional positional args forwarded to the underlying Frodo method.

    realm?: string

    Optional realm override applied to request-scoped auth context.

    scope?: string

    Optional scope selector for ambiguous generic operations (e.g. single vs bulk).