# interpol — how to use (mcp.ai)

Checks whether a name is on Interpol notices, from the name, surname, and date of birth, for compliance and AML due diligence. Platform-hosted, no credentials, pay per query with prepaid credit.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_interpol?ms=1787191620000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `interpol_consultar`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/interpol`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/interpol/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/interpol/consultar` — Verifica se um nome consta nas notificações da Interpol, a partir do nome, sobrenome e data de nascimento, para diligência de compliance e AML. Hospedado pela plataforma, sem credenciais, pague por co
  - body: { Nome: string, Sobrenome: string, DataNascimento: string, completo?: boolean }

## Example prompts
- "Is the name John Doe on Interpol?"
- "Check Interpol for John Doe born 1980-01-01"

## More
- Page: https://mcp.ai/interpol
- Agent spec (llms.txt): https://mcp.ai/interpol/llms.txt
- Postman collection: https://mcp.ai/interpol/postman.json
