list_polls

Pack: abgeordnetenwatch · Endpoint: https://gateway.pipeworx.io/abgeordnetenwatch/mcp

List recorded parliamentary votes/polls (Abstimmungen) with their title and date. Optionally scope to a single legislative period via period_id (a parliament-period id). Returns most recent polls first.

Parameters

NameTypeRequiredDescription
period_idnumber,stringnoOptional parliament-period (legislature) id to filter polls.
limitnumbernoMax results to return (default 10).

Example call

Arguments

{
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/abgeordnetenwatch/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_polls","arguments":{"limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_polls', {
  "limit": 10
});

More examples

{
  "period_id": 23,
  "limit": 20
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "abgeordnetenwatch": {
      "url": "https://gateway.pipeworx.io/abgeordnetenwatch/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026