ukcharity_trustees
Pack: uk-charity-commission · Endpoint: https://gateway.pipeworx.io/uk-charity-commission/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ukcharity_trustees for the schema, then POST the same URL with its arguments for the data.
List the named trustees of one UK registered charity — the people legally responsible for it — with each trustee’s id, appointment date and the other charities they are a trustee of, as held by the Charity Commission for England and Wales. Use for governance and due-diligence questions: “who runs charity X”, “what else does this trustee sit on”. This source requires an API key: Pipeworx does not front one today, so pass your own free Charity Commission subscription key as _apiKey. Example: ukcharity_trustees({ charity_number: “202918” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
charity_number | string | yes | Registered charity number, e.g. “202918” |
subsidiary_number | number | no | Subsidiary number — 0 for the main charity (default 0) |
Example call
Arguments
{
"charity_number": "202918"
}
curl
curl -X POST https://gateway.pipeworx.io/uk-charity-commission/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ukcharity_trustees","arguments":{"charity_number":"202918"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ukcharity_trustees', {
"charity_number": "202918"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"uk-charity-commission": {
"url": "https://gateway.pipeworx.io/uk-charity-commission/mcp"
}
}
}
See Getting Started for client-specific install steps.