Bundestag (DE)

liveLegislatureGovernmentEurope

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

6tools
0msauth
free tier50 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
NameTypeDescription
queryoptstring
ressortoptstring
descriptoroptstring
date_fromoptstring
date_tooptstring
formatoptstring
cursoroptstring
numoptnumber
Try it
search_drucksachen

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

Parameters
NameTypeDescription
queryoptstring
drucksachentypoptstring
date_fromoptstring
date_tooptstring
cursoroptstring
numoptnumber
Try it
get_drucksacherequired: id

Drucksache detail.

Parameters
NameTypeDescription
idreqstring
Try it
search_plenarprotokolle

Plenary meeting transcripts.

Parameters
NameTypeDescription
queryoptstring
date_fromoptstring
date_tooptstring
cursoroptstring
numoptnumber
Try it
get_plenarprotokollrequired: id

Plenary protocol detail.

Parameters
NameTypeDescription
idreqstring
Try it
search_persons

Search people in DIP.

Parameters
NameTypeDescription
queryoptstring
cursoroptstring
numoptnumber
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");