get_politician
Pack: abgeordnetenwatch · Endpoint: https://gateway.pipeworx.io/abgeordnetenwatch/mcp
Get the full profile of a single German politician by Abgeordnetenwatch id: name, party, year of birth, sex, education and residence. Get the id from search_politicians.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number,string | yes | Abgeordnetenwatch politician id. |
Example call
Arguments
{
"id": 11000
}
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":"get_politician","arguments":{"id":11000}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_politician', {
"id": 11000
});
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.