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 | 8x 8x 4x 4x | /**
* MCP Tool: get_procedure_event_by_id
*
* Get a specific event linked to a legislative procedure.
*
* **EP API Endpoint:**
* - `GET /procedures/{process-id}/events/{event-id}`
*
* ISMS Policy: SC-002 (Input Validation), AC-003 (Least Privilege)
*/
import { GetProcedureEventByIdSchema } 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_procedure_event_by_id MCP tool request.
*
* @param args - Raw tool arguments, validated against {@link GetProcedureEventByIdSchema}
* @returns MCP tool result containing the procedure event data
* @security Input is validated with Zod before any API call.
*/
export async function handleGetProcedureEventById(args: unknown): Promise<ToolResult> {
const params = GetProcedureEventByIdSchema.parse(args);
const result = await epClient.getProcedureEventById(params.processId, params.eventId);
return buildToolResponse(result);
}
/** Tool metadata for get_procedure_event_by_id */
export const getProcedureEventByIdToolMetadata = {
name: 'get_procedure_event_by_id',
description: 'Get a specific event linked to a legislative procedure. Returns a single event for the specified procedure and event identifiers. Data source: European Parliament Open Data Portal.',
inputSchema: {
type: 'object' as const,
properties: {
processId: { type: 'string', description: 'Procedure process ID' },
eventId: { type: 'string', description: 'Event identifier' }
},
required: ['processId', 'eventId']
}
};
|