European Parliament MCP Server API - v1.4.23
    Preparing search index...

    Interface ToolResult

    Standard MCP tool result format

    Every tool handler returns this structure, containing one or more content blocks. Each block carries its MIME type and serialised payload.

    interface ToolResult {
        content: { text: string; type: "text" }[];
        isError?: boolean;
    }
    Index
    content: { text: string; type: "text" }[]
    isError?: boolean