A Model Context Protocol (MCP) server for integrating with the Tomba.io API. This server provides comprehensive email discovery, verification, and enrichment capabilities through a standardized MCP interface.
Features
Tools (8 available)
Domain Search: Find all email addresses associated with a domain
Email Finder: Generate likely email addresses from names and domains
Email Verifier: Verify email deliverability and check database presence
Email Enrichment: Enrich emails with additional contact data
Author Finder: Discover email addresses of article authors
LinkedIn Finder: Find emails from LinkedIn profile URLs
Phone Finder: Search phone numbers by email, domain, or LinkedIn
Phone Validator: Validate phone numbers and check carrier info
Resources (5 available)
tomba://api/status - API status and account info
tomba://domain/{domain} - Domain information
tomba://email/{email} - Email information
tomba://docs/api - API documentation
tomba://docs/tools - Tools documentation
Prompts (7 pre-built workflows)
find_contact - Find complete contact info for a person
verify_email_list - Batch verify email addresses
research_company - Research company contacts and structure
enrich_lead - Enrich a lead with all available data
find_journalists - Find journalist contacts from articles
finder_phone - Find phone numbers for contacts
validate_phone - Validate a phone number
Transport Options
stdio - Standard input/output (default, for Claude Desktop)
http - HTTP server with REST endpoints
Installation
Prerequisites
Node.js 18 or higher
npm or yarn
Tomba API account (Sign up here)
Server Config
{
"mcpServers": {
"tomba": {
"url": "https://mcp.tomba.io/mcp",
"credentials": {
"authorization": "Bearer ta_1234567890abcdef+ts_abcdef1234567890"
},
"transport": {
"type": "http",
"streaming": "sse"
},
"options": {
"timeout": 30,
"retries": 3,
"verifySSL": true
},
"metadata": {
"description": "Remote MCP server for Tomba email verification and enrichment.",
"version": "1.0.0"
}
}
}
}