Uk Charity Commission
liveReferenceUK 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.
Tools
ukcharity_searchSearch the UK Register of Charities by name and return matching registered charities with their charity number, registration status, registered address and latest reported income. AUTHORITATIVE for ch
No parameters required.
Try it
ukcharity_detailsFetch 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_financialsReturn 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_trusteesList 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.
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"}'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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ukcharity_search", {});// 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");