@adcp/client API Reference - v4.19.0
    Preparing search index...

    Interface McpToolResponse

    MCP-compatible tool response shape. Uses Record<string, unknown> for structuredContent to satisfy MCP SDK's CallToolResult index signature requirement.

    interface McpToolResponse {
        content: { type: "text"; text: string }[];
        structuredContent: Record<string, unknown>;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    content: { type: "text"; text: string }[]
    structuredContent: Record<string, unknown>