Identity resolution MCP server for phone/email lookups across 31+ services. Global + India coverage.
MCPpedia last refreshed this data
io.github.outris-dev-user/outris-identity-mcp is an MCP server that identity resolution MCP server for phone/email lookups across 31+ services. Global + India coverage. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 65/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"outris-identity": {
"args": [
"-y",
"mcp-remote",
"https://mcp-server.outris.com/http",
"--transport",
"streamable-http",
"--header",
"Authorization=Bearer YOUR_API_KEY"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Outris Identity is a Model Context Protocol (MCP) server that lets AI agents investigate phone numbers and emails - find linked identities, check platform registrations, and detect data breaches.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
Regression testing for MCP servers. Checks capabilities, invokes tools, detects schema drift.
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
MCP server for RocketCyber Managed SOC — incidents, alerts, agents, and customer telemetry.
MCP Security Weekly
Get CVE alerts and security updates for io.github.outris-dev-user/outris-identity-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Outris Identity is a Model Context Protocol (MCP) server that lets AI agents investigate phone numbers and emails - find linked identities, check platform registrations, and detect data breaches.
Version 2.0 - Now with Streamable HTTP, SSE, and STDIO support! 🚀
Step 1: Get API Key from Outris Portal
Step 2: Configure Claude Desktop
Edit claude_desktop_config.json:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"outris-identity": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp-server.outris.com/http",
"--transport",
"streamable-http",
"--header",
"Authorization=Bearer YOUR_API_KEY"
]
}
}
}
Step 3: Restart Claude and start investigating!
git clone https://github.com/outris/outris-identity-mcp.git
cd outris-identity-mcp
pip install -r requirements.txt
python -m mcp_server --http
# Server runs on http://localhost:8000
docker build -t outris-identity .
docker run -e OUTRIS_API_KEY="your_key" -p 8000:8000 outris-identity
See SETUP.md for detailed configuration instructions.
A small, curated set of intent tools — one per common identity/KYC journey — instead of a flat list of ~100 endpoints. See TOOLS.md for details.
| Tool | Credits | Use Case |
|---|---|---|
| investigate_phone | 3 | Who is behind a mobile — names, addresses, alt-phones, footprint (depth basic/full) |
| assess_fraud_risk | 3 | Composite fraud-risk profile for a phone |
| find_contacts | 3 | Skip-trace alt phones + geocoded addresses (consent token) |
| due_diligence_person_start / check_job | 5 / 0 | Async background check — PEP/sanctions/enforcement/adverse media (consent, premium, 40–70s → poll) |
| investigate_email | 2 | Trace the person behind an email |
| resolve_company | 3 | Company name → CIN + GSTIN/MSME |
| lookup_gst | 2 | GST registration details from a GSTIN |
| verify_pan | 2 | Verify a PAN, return holder details |
| lookup_vehicle | 2 | Vehicle + registered owner from an RC number |
| verify_bank_account | 2 | No-debit bank-account validation (no money moved) |
| smart_lookup | 3 | Long-tail router — NL question + any identifier → the right lookup/sequence |
| Transport | URL | Use Case | Status |
|---|---|---|---|
| Streamable HTTP | POST /http | Cloud, Claude Desktop | ✅ PRIMARY |
| SSE | GET /sse | Legacy clients, proxies | ⚠️ Supported |
| STDIO | python -m mcp_server | Local CLI, direct integration | 🟢 Native |
# Test the server
curl https://mcp-server.outris.com/health
# List available tools
curl https://mcp-server
... [View full README on GitHub](https://github.com/outris-dev-user/outris-identity-mcp#readme)