# find_similar

Given one charity's slug, return up to limit other charities in the same country + category. Useful for 'find more like this' recommendations. Excludes the input charity from the result.

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

## Facts

- Tool: `find_similar`
- 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 (1 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `slug` | string | yes | Source charity slug. |
| `limit` | integer | no |  |

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": "find_similar",
    "arguments": {
      "slug": "<slug>"
    }
  }
}
```

## Why find_similar is rated Low

This tool retrieves existing charity registry data without side effects. It searches and filters records based on country and category matching, analogous to a filtered search or recommendation query. There is no write, execute, destructive, or financial impact—only data retrieval from a read-only registry search operation.

From the tool's own definition: "Tool performs a query operation ('return up to `limit` other charities') that retrieves and recommends similar charity records based on search criteria. No data is created, modified, or deleted."

## Use case

AI agents call find_similar 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": {
    "find_similar": {}
  }
}
```

## Other tools on Charity Registry (3)

- `compare_charities` — Read — https://policylayer.com/tools/com-giveradar-charity-registry/compare-charities.md
- `search_charities` — Read — https://policylayer.com/tools/com-giveradar-charity-registry/search-charities.md
- `verify_charity` — Read — https://policylayer.com/tools/com-giveradar-charity-registry/verify-charity.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
