Search DevTools

Jump to any tool or page

charity-registry

Search, verify, and compare 8.7M+ charities from official government registries in 60+ countries.

matt-timmermans0 stars0 forksAI & Agents
View source

Install

mcp_config.json

{
  "mcpServers": {
    "com-giveradar-charity-registry": {
      "url": "https://giveradar.com/mcp/",
      "type": "streamable-http"
    }
  }
}

Documentation

GiveRadar MCP Server

Remote MCP server exposing 7 million+ registered charities across 65+ countries, sourced from official government registries (IRS, Charity Commission, ACNC, and dozens more). Read-only, no key required to start.

Endpoint: https://giveradar.com/mcp/ (JSON-RPC 2.0 over HTTPS) Docs: giveradar.com/mcp | Manifest: /.well-known/mcp.json

Tools

ToolWhat it does
search_charitiesFree-text name search (trigram-indexed), optional country filter
verify_charityLook up by EIN / UK Charity Number / RSIN / any official registry ID
compare_charitiesSide-by-side integrity scores + financials, with a verdict
find_similarMore charities in the same country + category

Plus resources/list / resources/read for full schema.org JSON-LD per charity (incl. FAQs). All tools are read-only (readOnlyHint: true).

Connect

This repo includes a tiny zero-dependency stdio bridge (index.js) that forwards the MCP stdio transport to the hosted endpoint, so any stdio MCP client can use it. Add to Claude Desktop's claude_desktop_config.json:

{
  "mcpServers": {
    "giveradar": {
      "command": "npx",
      "args": ["-y", "github:matt-timmermans/giveradar-mcp"]
    }
  }
}

Clients with native streamable-HTTP support can connect directly to https://giveradar.com/mcp/. You can also use the generic remote bridge npx -y mcp-remote https://giveradar.com/mcp/.

Optional: set GIVERADAR_API_KEY=gr_xxxxx in the environment to raise the daily quota and unlock Pro fields.

Try it

curl -s -X POST -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"verify_charity","arguments":{"country":"US","id_value":"13-1760110"}}}' \
  https://giveradar.com/mcp/

Quotas & tiers

TierDaily quotaFields
Anonymous50 / day / IPAll free fields
Free API key100 / dayAll free fields
Pro10,000 / day+ financials, donation/report URLs

Authenticate with Authorization: Bearer gr_xxxxx - get a key at giveradar.com/api. Email, phone, and officer names are never exposed, at any tier.

About

The MCP server is hosted (the implementation lives in the main GiveRadar codebase); this repo holds the public metadata plus the stdio bridge for local and sandbox use. Data license: CC-BY-4.0 - attribute "GiveRadar (giveradar.com)". Issues and feature requests welcome here.

Sourced from the repository README.

More in AI & Agents