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

    Interface ToolMetadata

    Full metadata descriptor for a registered MCP tool.

    Extends the minimal MCP schema with a category field so callers can group, filter, or display tools by logical purpose.

    interface ToolMetadata {
        category: ToolCategory;
        description: string;
        inputSchema: unknown;
        name: string;
    }
    Index

    Properties

    category: ToolCategory

    Logical category for grouping and display

    description: string

    Human-readable description shown in ListTools responses

    inputSchema: unknown

    JSON-Schema object describing the tool's input parameters

    name: string

    Unique tool identifier used in MCP CallTool requests