European Parliament MCP Server API - v1.2.6
    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

    Properties

    Properties

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