Bundestag (DE)

live GovernmentLegislatureEurope

German Bundestag DIP API — plenary minutes, bills, parliamentary questions, members. Free with API key.

6 tools
0ms auth
free tier 50 calls/day
🔑 Authentication

Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>. The pack also falls back to the public demo key documented on dip.bundestag.de.

Config with credentials
{
  "mcpServers": {
    "pipeworx-bundestag-de": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@latest",
        "https://gateway.pipeworx.io/bundestag-de/mcp?_apiKey=your_key"
      ]
    }
  }
}

Tools

search_activities

Combined activity feed.

Parameters
Name Type Description
query opt string
ressort opt string
descriptor opt string
date_from opt string
date_to opt string
format opt string
cursor opt string
num opt number
Try it
search_drucksachen

Printed documents (bills, motions, ...).

Parameters
Name Type Description
query opt string
drucksachentyp opt string
date_from opt string
date_to opt string
cursor opt string
num opt number
Try it
get_drucksache required: id

Drucksache detail.

Parameters
Name Type Description
id req string
Try it
search_plenarprotokolle

Plenary meeting transcripts.

Parameters
Name Type Description
query opt string
date_from opt string
date_to opt string
cursor opt string
num opt number
Try it
get_plenarprotokoll required: id

Plenary protocol detail.

Parameters
Name Type Description
id req string
Try it
search_persons

Search people in DIP.

Parameters
Name Type Description
query opt string
cursor opt string
num opt number
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/bundestag-de/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/bundestag-de/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_activities","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("search_activities", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("german bundestag dip api — plenary minutes, bills, parliamentary questions, members");