# search_person

Fuzzy-search a sanctioned person by name across all loaded lists. Optional date of birth and nationality narrow results. Returns matches with confidence scores (0-100). 100 = exact ID match, 80+ = strong fuzzy match, lower = review needed.

Agent View of the PolicyLayer registry record for `search_person`. HTML page: https://policylayer.com/tools/dev-cz-agents-isir/search-person

## Facts

- Tool: `search_person`
- Server: Isir (`@czagents/isir`) — https://policylayer.com/tools/dev-cz-agents-isir.md
- Install: `npx -y @czagents/isir`
- Homepage: https://github.com/martinhavel/cz-agents-mcp
- Risk category: Read (Low risk)
- Registry record: grade C, identity unverified
- Server auth posture: open
- Server rate-limited: yes
- Parameters: 5 (1 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `dob` | string | no | YYYY or YYYY-MM-DD. Optional, narrows matches. |
| `name` | string | yes | Full name. Cyrillic / Arabic / Chinese tolerated; transliteration applied. |
| `limit` | integer | no | Max results (default 20). |
| `threshold` | integer | no | Min confidence to include in results (default 80). |
| `nationality` | string | no | Country name or ISO code. Optional. |

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": "search_person",
    "arguments": {
      "name": "<name>"
    }
  }
}
```

## Why search_person is rated Low

This tool retrieves and queries data from sanctioned person lists without creating, modifying, deleting, or executing any operations. It is a straightforward information lookup utility. Severity is low because read-only access to public/regulatory sanctioned-person lists poses minimal direct risk; misuse yields information exposure rather than operational or financial harm.

From the tool's own definition: "Tool description explicitly states it performs 'Fuzzy-search' and 'Returns matches with confidence scores' — a query operation with no modification or side effects."

## Use case

AI agents call search_person to retrieve information from Isir 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 Isir:

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

## Other tools on Isir (5)

- `check_ico` — Read — https://policylayer.com/tools/dev-cz-agents-isir/check-ico.md
- `get_listing` — Read — https://policylayer.com/tools/dev-cz-agents-isir/get-listing.md
- `list_recent_updates` — Read — https://policylayer.com/tools/dev-cz-agents-isir/list-recent-updates.md
- `rescreen_portfolio` — Read — https://policylayer.com/tools/dev-cz-agents-isir/rescreen-portfolio.md
- `search_entity` — Read — https://policylayer.com/tools/dev-cz-agents-isir/search-entity.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=dev-cz-agents-isir · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/dev-cz-agents-isir
