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

      Analyses an EP committee's workload, meeting frequency, document production, member engagement, and legislative output over a given period using real data from the European Parliament Open Data Portal. Provides computed attributes including workload intensity, productivity score, engagement level, and policy impact rating.

      Parameters

      Returns Promise<ToolResult>

      MCP tool result containing a CommitteeActivityAnalysis object with metrics, computed attributes, confidence level, and methodology note

      • If args fails schema validation (e.g., missing required committeeId)
      • If the European Parliament API is unreachable or returns an error response
      const result = await handleAnalyzeCommitteeActivity({
      committeeId: 'ENVI',
      dateFrom: '2024-01-01',
      dateTo: '2024-12-31'
      });
      // Returns workload, engagement, and legislative output for the ENVI committee in 2024
      • 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