European Parliament MCP Server API - v1.0.1
    Preparing search index...
    • Handles the get_meeting_foreseen_activities MCP tool request.

      Retrieves planned agenda items (foreseen activities) linked to a specific EP plenary sitting, enabling proactive intelligence collection ahead of scheduled meetings.

      Parameters

      Returns Promise<ToolResult>

      MCP tool result containing foreseen activity records for the requested sitting

      • If args fails schema validation (e.g., missing required sittingId field)
      • If the European Parliament API is unreachable or returns an error response
      const result = await handleGetMeetingForeseenActivities({
      sittingId: 'PV-9-2024-04-22',
      limit: 20,
      offset: 0
      });
      // Returns planned agenda items for plenary sitting PV-9-2024-04-22
      • Input is validated with Zod before any API call.
      • Personal data in responses is minimised per GDPR Article 5(1)(c).
      • All requests are rate-limited and audit-logged per ISMS Policy AU-002.

      0.8.0