ukcharity_financials
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_financials for the schema, then POST the same URL with its arguments for the data.
Return a UK charity’s reported financial history year by year — total gross income, total expenditure and the financial period each figure covers, as filed in its annual returns to the Charity Commission for England and Wales. Use for “how has charity X’s income changed”, “what did charity Y spend last year”. 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_financials({ 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_financials","arguments":{"charity_number":"202918"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ukcharity_financials', {
"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.