Tweede Kamer (Netherlands)

live Data

Dutch Parliament (Tweede Kamer) open data MCP.

3 tools
0ms auth
free tier 50 calls/day

Tools

query_entity

Query a Tweede Kamer (Dutch Parliament) OData v4 entity set with full OData passthrough.

No parameters required.

Try it
get_entity_by_id

Fetch one Tweede Kamer record by its GUID id. Pass the entity name and the record Id (a GUID, e.g. "8b3664bd-77e4-468b-af96-f3f4ec27fcce"). Optionally narrow fields with $select or inline related reco

No parameters required.

Try it
search_people

Convenience search over Tweede Kamer members/people (Persoon entity) by name. Matches a case-insensitive substring against surname (Achternaam) and/or preferred first name (Roepnaam). Returns id, name

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/tweedekamer-nl/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/tweedekamer-nl/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"query_entity","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("query_entity", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("dutch parliament (tweede kamer) open data mcp");