Documentation Index
Fetch the complete documentation index at: https://docs.encrata.com/llms.txt
Use this file to discover all available pages before exploring further.
MCP Flow
Agents that speak MCP (Model Context Protocol) can skip HTTP entirely. Add the Encrata server to your MCP config and every lookup becomes a native tool call. The agent doesn’t need to construct HTTP requests, parse JSON responses, or manage authentication headers. MCP handles it all.When to use it
- Your agent platform supports MCP (Claude Code, Cursor, Windsurf, custom MCP clients)
- You want native tool integration - lookups appear as callable functions
- You prefer structured I/O over raw HTTP request/response management
How it works
- Agent calls a named tool (e.g.,
lookup_email) - MCP client sends the request to Encrata’s MCP server with the configured auth header
- Encrata processes the lookup and returns structured data
- Agent receives the result as a native tool response
Configuration
Add Encrata to your MCP config file:You still need an API key for MCP authentication. Create one via the API Key Flow or from the dashboard.
Available tools
Once connected, the following tools are available to your agent:| Tool | Description | Parameters |
|---|---|---|
lookup_email | Email enrichment | email (string) |
lookup_phone | Phone number lookup | phone (string) |
lookup_ip | IP intelligence | ip (string) |
lookup_domain | Domain search | domain (string) |
lookup_company | Company search | company (string) |
google_search | Google search | query (string) |
darkweb_search | Dark web search | query (string) |
username_search | Username search | username (string) |
check_credits | Check remaining credits | none |
Platform-specific setup
- Claude Code
- Cursor
- Windsurf
Add to
~/.claude/mcp.json:What you get
- Native tool calls - no HTTP boilerplate, no JSON parsing
- Automatic discovery - agent sees available tools without reading docs
- Structured responses - data comes back in the format your agent expects
- Same credit system - each tool call costs the same as the equivalent HTTP endpoint
MCP vs HTTP
| Aspect | MCP | HTTP |
|---|---|---|
| Setup | Config file + API key | API key only |
| Request format | Tool call with named params | HTTP POST with JSON body |
| Response format | Structured tool result | JSON response body |
| Auth | Configured once in MCP config | Bearer header on every request |
| Platform support | MCP-capable agents only | Any HTTP client |
| Discovery | Automatic (tool listing) | Manual (read auth.md) |