get_member
Pack: uk-parliament · Endpoint: https://gateway.pipeworx.io/uk-parliament/mcp
Member detail by member id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | Parliament member id |
includes | string | no | Comma-sep: Posts | Biography | Contact | Synopsis |
Example call
Arguments
{
"id": 4385
}
curl
curl -X POST https://gateway.pipeworx.io/uk-parliament/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_member","arguments":{"id":4385}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_member', {
"id": 4385
});
More examples
{
"id": 4385,
"includes": "Posts,Biography,Contact"
}
Response shape
| Field | Type | Description |
|---|---|---|
member | object | Main member record |
includes | object | Additional member data sections (Posts, Biography, Contact, Synopsis) |
Full JSON Schema
{
"type": "object",
"description": "Member detail with optional includes",
"properties": {
"member": {
"type": "object",
"description": "Main member record"
},
"includes": {
"type": "object",
"description": "Additional member data sections (Posts, Biography, Contact, Synopsis)",
"additionalProperties": true
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"uk-parliament": {
"url": "https://gateway.pipeworx.io/uk-parliament/mcp"
}
}
}
See Getting Started for client-specific install steps.