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

      Detects voting coalitions, cross-party alliances, group cohesion rates, and coalition stress indicators across European Parliament political groups. Uses CIA Coalition Analysis methodology to measure parliamentary fragmentation, effective number of parties, and grand-coalition viability.

      Parameters

      Returns Promise<ToolResult>

      MCP tool result containing coalition pair cohesion scores, group cohesion metrics, dominant coalition, stress indicators, and computed fragmentation attributes

      • 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 handleAnalyzeCoalitionDynamics({
      groupIds: ['EPP', 'S&D', 'Renew'],
      minimumCohesion: 0.5,
      dateFrom: '2024-01-01',
      dateTo: '2024-12-31'
      });
      // Returns coalition pair analysis with cohesion scores, stress indicators,
      // and parliamentary fragmentation index
      • 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

      Detects voting coalitions, measures political group cohesion, and identifies cross-party alliances using CIA Coalition Analysis methodology. Fetches real MEP membership counts from the EP Open Data API; pairwise cohesion is derived from group-size ratios (per-MEP voting statistics are not available from the EP API /meps/{id} endpoint).

      Analysis outputs:

      • Group cohesion metrics (member count, stress indicator, fragmentation risk)
      • Pairwise coalition strength for each group combination
      • Dominant coalition identification
      • Stress indicators for groups with high internal tension
      • Parliament-wide fragmentation index (Herfindahl–Hirschman)
      • Effective number of parties (ENP)

      Note: Confidence level is LOW because per-MEP voting statistics are unavailable from the current EP API. Cohesion/defection/attendance metrics are null with dataAvailability: 'UNAVAILABLE' and should be supplemented with vote-result data when available.

      When the EP API request fails or group data cannot be fetched

      When input fails schema validation (invalid group IDs, date format)

      // Analyze all political groups with default settings
      const result = await handleAnalyzeCoalitionDynamics({});
      const analysis = JSON.parse(result.content[0].text);
      console.log(`Fragmentation index: ${analysis.computedAttributes.parliamentaryFragmentation}`);
      // Analyze specific groups with higher alliance threshold
      const result = await handleAnalyzeCoalitionDynamics({
      groupIds: ["EPP", "S&D", "Renew"],
      minimumCohesion: 0.6,
      dateFrom: "2024-01-01",
      dateTo: "2024-12-31"
      });

      Input validated by Zod. Errors sanitized (no stack traces exposed). ISMS Policy: SC-002 (Input Validation), AC-003 (Least Privilege)