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 | 9x 9x | /**
* @module mcp-client/methods/members
* @description Member / ledamot domain methods for the MCP client.
*
* @author Hack23 AB
* @license Apache-2.0
*/
import type { MCPTransportClient } from '../transport/jsonrpc.js';
import type { FetchMPsFilters } from '../../types/mcp.js';
export async function fetchMPs(
transport: MCPTransportClient,
filters: FetchMPsFilters = {},
): Promise<unknown[]> {
const response = await transport.request(
'search_ledamoter',
filters as unknown as Record<string, unknown>,
);
return (response['mps'] ?? []) as unknown[];
}
|