Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | 14x 14x 8x 4x | /**
* MCP Tool: get_incoming_meps
*
* Retrieve incoming Members of European Parliament for the current parliamentary term.
*
* **Intelligence Perspective:** Enables tracking of new MEPs joining parliament,
* useful for understanding political transitions and new member onboarding.
*
* **Business Perspective:** Helps stakeholders identify newly arriving MEPs
* for early engagement and relationship building.
*
* **EP API Endpoint:** `GET /meps/show-incoming`
*
* ISMS Policy: SC-002 (Input Validation), AC-003 (Least Privilege)
*/
import { GetIncomingMEPsSchema } from '../schemas/europeanParliament.js';
import { epClient } from '../clients/europeanParliamentClient.js';
import { buildToolResponse } from './shared/responseBuilder.js';
import type { ToolResult } from './shared/types.js';
/**
* Handles the get_incoming_meps MCP tool request.
*
* Retrieves Members of European Parliament who are newly joining parliament during the
* current parliamentary term. Useful for tracking political transitions, onboarding
* patterns, and early-engagement stakeholder analysis.
*
* @param args - Raw tool arguments, validated against {@link GetIncomingMEPsSchema}
* @returns MCP tool result containing a paginated list of incoming MEP records for the
* current parliamentary term
* @throws - If `args` fails schema validation (e.g., limit out of range 1–100)
* - If the European Parliament API is unreachable or returns an error response
*
* @example
* ```typescript
* const result = await handleGetIncomingMEPs({ limit: 20, offset: 0 });
* // Returns up to 20 MEPs who are newly joining the current parliamentary term
* ```
*
* @security - 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.
* @since 0.8.0
* @see {@link getIncomingMEPsToolMetadata} for MCP schema registration
* @see {@link handleGetCurrentMEPs} for all currently active MEPs
* @see {@link handleGetOutgoingMEPs} for MEPs who are departing parliament
*/
export async function handleGetIncomingMEPs(
args: unknown
): Promise<ToolResult> {
const params = GetIncomingMEPsSchema.parse(args);
const result = await epClient.getIncomingMEPs({
limit: params.limit,
offset: params.offset
});
return buildToolResponse(result);
}
/** Tool metadata for get_incoming_meps */
export const getIncomingMEPsToolMetadata = {
name: 'get_incoming_meps',
description: 'Get incoming Members of European Parliament for the current parliamentary term. Returns MEPs who are newly joining. Data source: European Parliament Open Data Portal.',
inputSchema: {
type: 'object' as const,
properties: {
limit: { type: 'number', description: 'Maximum results to return (1-100)', default: 50 },
offset: { type: 'number', description: 'Pagination offset', default: 0 }
}
}
};
|