# identidade_ar — how to use (mcp.ai)

Verifies a person's identity in Argentina by matching the provided data (DNI, name, birth, address). 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_identidade_ar?ms=1787191740000`
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. `identidade_ar_consultar`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/identidade_ar`
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/identidade_ar/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/identidade_ar/consultar` — Verifica a identidade de uma pessoa na Argentina confrontando os dados informados (DNI, nome, nascimento e endereço). Hospedado pela plataforma, sem credenciais, pague por consulta com crédito pré-pag
  - body: { DNI: string, Name: string, Surname: string, DOB: string, Address: string, City: string, State: string, PostCode: string, Phone: string, Country: string, completo?: boolean }

## Example prompts
- "Do the data for DNI 12345678 match the holder?"
- "Verify the identity of DNI 12345678"

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