ukcharity_details
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_details for the schema, then POST the same URL with its arguments for the data.
Fetch the full UK Register of Charities entry for one charity number: registered and working names, status and registration/removal dates, charitable objects, activities, areas of operation, governing document, contact details, latest reported income and expenditure, and which other regulators it answers to. AUTHORITATIVE, sourced from the Charity Commission for England and Wales. 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_details({ 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_details","arguments":{"charity_number":"202918"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ukcharity_details', {
"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.