TheDocumentation Index
Fetch the complete documentation index at: https://docs.loqate.com/llms.txt
Use this file to discover all available pages before exploring further.
lqt binary includes a built-in MCP (Model Context Protocol) server that exposes Loqate verification as tools that AI agents can call directly. This means your agent can verify addresses, emails, and phone numbers without shelling out to the CLI — the MCP client handles tool invocation natively.
Two modes
| Mode | Command | Best for |
|---|---|---|
| Stdio | lqt mcp | Local agents — Claude Code, Cursor, VS Code. Communicates over stdin/stdout. |
| HTTP | lqt mcp --http :8080 | Hosted deployments. Includes per-IP rate limiting, request logging, and a /health endpoint. |
Setup by client
- Claude Code
- Claude Desktop
- Cursor
- VS Code
Add Reach as a local MCP server:Set your API key as an environment variable in your shell profile, or pass it in the MCP config:Verify the connection:
.claude/settings.json
Remote MCP server
If you prefer not to install the CLI, you can connect to the hosted MCP endpoint:- Claude Code
- Cursor
When using the remote MCP server, your API key can be configured at the organization level (Claude Desktop, Claude Code, Cursor) or passed per-session. See Configuration for details.
HTTP mode
For hosted or shared deployments, run the MCP server in HTTP mode:- Per-IP rate limiting
- Request logging
/healthendpoint for load balancers and monitoring

