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

    Function handleGetProcedureEvents

    • Handles the get_procedure_events MCP tool request.

      Retrieves the chronological timeline of events (committee hearings, plenary debates, votes, and other milestones) linked to a specific EP legislative procedure, supporting precise legislative tracking and compliance monitoring.

      Parameters

      Returns Promise<ToolResult>

      MCP tool result containing the ordered list of events for the specified procedure

      • If args fails schema validation (e.g., missing required processId)
      • If the European Parliament API is unreachable or returns an error response
      const result = await handleGetProcedureEvents({
      processId: '2023/0132(COD)',
      limit: 50,
      offset: 0
      });
      // Returns committee hearings, plenary debates, and votes for procedure 2023/0132(COD)
      • 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