# verify_charity

Look up a charity by its official registry identifier - EIN (US), Charity Commission number (GB), RSIN (NL), AHU/Kemenkumham reg number (ID), or a generic registration_number for other countries. Returns the matched charity or null. Use this when the user provides a registry number and wants to confirm what's registered under it.

Agent View of the PolicyLayer registry record for `verify_charity`. HTML page: https://policylayer.com/tools/com-giveradar-charity-registry/verify-charity

## Facts

- Tool: `verify_charity`
- Server: Charity Registry (`https://giveradar.com/mcp/`) — https://policylayer.com/tools/com-giveradar-charity-registry.md
- Homepage: https://github.com/matt-timmermans/giveradar-mcp
- Risk category: Read (Low risk)
- Registry record: grade C, identity unverified
- Server auth posture: open
- Server rate-limited: no
- Parameters: 2 (2 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `country` | string | yes | ISO 3166-1 alpha-2 country code. |
| `id_value` | string | yes | The registration / EIN / charity number. |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "verify_charity",
    "arguments": {
      "country": "<country>",
      "id_value": "<id_value>"
    }
  }
}
```

## Why verify_charity is rated Low

This tool queries official government charity registries using identifiers (EIN, Charity Commission number, etc.) and retrieves matching records. It performs a lookup with no side effects, mutations, or irreversible actions. The return value is a matched charity record or null, confirming it is purely informational retrieval.

From the tool's own definition: "Tool description states 'Look up a charity' and 'Returns the matched charity or null' — core read operation. No modification, deletion, or execution described."

## Use case

AI agents call verify_charity to retrieve information from Charity Registry without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

## Recommended policy (PolicyLayer)

Verdict: **Allowed**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Charity Registry:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "verify_charity": {}
  }
}
```

## Other tools on Charity Registry (3)

- `compare_charities` — Read — https://policylayer.com/tools/com-giveradar-charity-registry/compare-charities.md
- `find_similar` — Read — https://policylayer.com/tools/com-giveradar-charity-registry/find-similar.md
- `search_charities` — Read — https://policylayer.com/tools/com-giveradar-charity-registry/search-charities.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-giveradar-charity-registry · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-giveradar-charity-registry
