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

      Monitors the European Parliament's active legislative pipeline by fetching real procedures from the EP API and computing health metrics including bottleneck detection, stalled-procedure rate, throughput rate, and legislative momentum. All procedure data (title, type, stage, status, dates, committee) is sourced directly from the EP API; computed attributes are derived from real dates and stages.

      Parameters

      Returns Promise<ToolResult>

      MCP tool result containing pipeline items with stage and status, summary counts (active/stalled/completed), detected bottlenecks, pipeline health score, throughput rate, bottleneck index, and legislative momentum classification

      • If args fails schema validation (e.g., missing required fields or invalid format)
      • If the European Parliament API is unreachable or returns an error response
      const result = await handleMonitorLegislativePipeline({
      status: 'ACTIVE',
      committee: 'ENVI',
      dateFrom: '2024-01-01',
      dateTo: '2024-12-31',
      limit: 20
      });
      // Returns pipeline health score, stalled/active/completed counts,
      // bottleneck list, and legislative momentum assessment
      • 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