Uk Charity Commission

liveReference

UK Register of Charities from the Charity Commission for England and Wales: look up any registered charity's status, objects, areas of operation, reported income and expenditure year by year, and its named trustees.

4tools
0msauth
free tier50 calls/day

Tools

ukcharity_details

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

No parameters required.

Try it
ukcharity_financials

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 Commiss

No parameters required.

Try it
ukcharity_trustees

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 Ch

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/uk-charity-commission/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/uk-charity-commission/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ukcharity_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ukcharity_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("uk register of charities from the charity commission for england and wales: look up any registered charity's status, objects, areas of operation, reported income and expenditure year by year, and its named trustees");