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 | 6x 6x 6x 6x 6x | /**
* @module mcp-client/methods/calendar
* @description Calendar / kalender domain methods for the MCP client.
*
* @author Hack23 AB
* @license Apache-2.0
*/
import type { MCPTransportClient } from '../transport/jsonrpc.js';
/**
* Fetch parliamentary calendar events between two dates, optionally
* filtered by organ (committee) and aktivitet (event type).
*/
export async function fetchCalendarEvents(
transport: MCPTransportClient,
from: string,
tom: string,
org: string | null = null,
akt: string | null = null,
): Promise<unknown[]> {
const params: Record<string, unknown> = { from, tom };
if (org) params['org'] = org;
if (akt) params['akt'] = akt;
const response = await transport.request('get_calendar_events', params);
return (response['kalender'] ?? response['events'] ?? []) as unknown[];
}
|