Skip to main content

How to use the Tomba remote MCP server

Connect to Tomba's cloud-hosted MCP server over HTTP - no local installation required.

Written by Tomba.io Team

The remote MCP server is hosted and maintained by Tomba. You connect over HTTP, so there is nothing to install or keep up to date — useful when your AI application runs on a server rather than a desktop.

Why choose remote

  • Cloud-hosted — no setup or maintenance

  • HTTP transport — straightforward integration

  • Real-time — Server-Sent Events for streaming responses

  • Scalable — handles high request volumes

  • Secure — API key authentication

Before you start

You will need your Tomba API key and secret. See How to find my API key and Where can I find my secret key.

Connecting

Point your MCP client at https://mcp.tomba.io using HTTP transport and pass your credentials as headers:

const client = new MCPClient({  transport: 'http',  url: 'https://mcp.tomba.io',  headers: {    'X-API-KEY': 'your-api-key',    'X-SECRET-KEY': 'your-api-secret'  }})

Available capabilities

Email Finder by name and domain, Email Verifier for deliverability checking, Domain Search for company emails, Email Enrichment for detailed data, LinkedIn Email Finder, and Author Finder from URLs.

Related


Related Resources

Did this answer your question?