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

    Variable FIXED_WINDOW_FEED_INPUT_SCHEMAConst

    FIXED_WINDOW_FEED_INPUT_SCHEMA: {
        properties: {
            limit: {
                description: string;
                maximum: number;
                minimum: number;
                type: string;
            };
            offset: { description: string; minimum: number; type: string };
            startDate: { description: string; type: string };
            timeframe: { description: string; enum: string[]; type: string };
        };
        type: "object";
    } = ...

    Shared MCP tools/list inputSchema for fixed-window feed tools (Group A: get_documents_feed, get_plenary_documents_feed, etc.).

    The underlying EP API endpoints do not accept timeframe / startDate / limit / offset and always serve a server-defined default window (typically one month). For contract uniformity with the sliding-window feed tools (Group B), this schema still advertises those parameters — they are accepted by the Zod validator but silently ignored at the upstream call site. See FixedWindowFeedSchema in src/schemas/ep/feed.ts.

    Type Declaration

    • properties: {
          limit: {
              description: string;
              maximum: number;
              minimum: number;
              type: string;
          };
          offset: { description: string; minimum: number; type: string };
          startDate: { description: string; type: string };
          timeframe: { description: string; enum: string[]; type: string };
      }
    • type: "object"