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

    Type Alias McpToolExecutionRequest

    Envelope for runtime tool execution.

    type McpToolExecutionRequest = {
        arguments?:
            | McpGenericExecutionArguments
            | McpSpecialExecutionArguments
            | Record<string, unknown>;
        context: McpRuntimeRequestContext;
        toolName: string;
    }
    Index

    Properties

    arguments?:
        | McpGenericExecutionArguments
        | McpSpecialExecutionArguments
        | Record<string, unknown>

    Tool arguments.

    • Generic tools require domain and objectType.
    • Special tools accept positionalArgs and/or namedArgs.
    • Discovery tool ignores arguments.

    Request-scoped context used to create an isolated Frodo instance.

    toolName: string

    MCP tool name from the manifest.