ISPO SDK
    Preparing search index...

    Interface PromptToolCall

    Markdown

    One tool invocation recorded on a message. The provider's own call id is the join key to the matching PromptToolResult; a store that omits it leaves id absent rather than inventing one, because positional pairing is wrong the moment a turn issues parallel calls.

    interface PromptToolCall {
        id?: string;
        name: string;
    }
    Index
    id?: string

    Provider call id (toolu_… / call_…). Absent when the store omits it.

    name: string

    Exact tool name as invoked, e.g. mcp__ispo-host__get_project_context.