ukcharity_search

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_search for the schema, then POST the same URL with its arguments for the data.

Search 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 charities in England and Wales — this is the Charity Commission’s own register, the legal record. 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_search({ query: “oxfam” })

Parameters

NameTypeRequiredDescription
querystringyesCharity name or part of it, e.g. “oxfam”, “royal society”
limitnumbernoMaximum charities to return (default 20, max 100)
registered_onlybooleannoOnly charities currently on the register, excluding removed ones (default false)

Example call

Arguments

{
  "query": "oxfam",
  "limit": 5
}

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_search","arguments":{"query":"oxfam","limit":5}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ukcharity_search', {
  "query": "oxfam",
  "limit": 5
});

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.

Regenerated from source · build September 18, 2026