Tomba Agent Plugins

Tomba Agent Plugins

Provides email discovery, verification, enrichment, and company research through a remote MCP server.

Category
访问服务器

README

<p align="center"> <a href="https://tomba.io"> <img src="https://tomba.io/logo.svg" alt="Tomba" width="200"> </a> </p>

<h1 align="center">Tomba Agent Plugins</h1>

<p align="center"> Agent plugins for <a href="https://tomba.io">Tomba</a> remote MCP server — providing email discovery, verification, enrichment, and company research across multiple AI coding assistants. </p>

<p align="center"> <a href="https://tomba.io"><img src="https://img.shields.io/badge/Tomba-API-blue?style=flat-square" alt="Tomba API"></a> <a href="https://docs.tomba.io/llm/remote-mcp/introduction"><img src="https://img.shields.io/badge/MCP-Supported-green?style=flat-square" alt="MCP Supported"></a> <a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-yellow?style=flat-square" alt="License: MIT"></a> <a href="https://github.com/tomba-io/tomba"><img src="https://img.shields.io/badge/CLI-tomba--io%2Ftomba-orange?style=flat-square" alt="Tomba CLI"></a> <img src="https://img.shields.io/badge/Tools-12-purple?style=flat-square" alt="12 Tools"> <img src="https://img.shields.io/badge/Platforms-9-teal?style=flat-square" alt="9 Platforms"> </p>


Supported Platforms

Platform Plugin Path Auth Method
Generic / Multi-agent .agents/plugins/ Bearer token or API headers
Claude (Desktop & Code) .claude-plugin/ Bearer token
Cursor AI .cursor-plugin/ X-Tomba-Key / X-Tomba-Secret headers
VS Code (GitHub Copilot) .vscode/ Bearer token (prompted)
Windsurf .windsurf-plugin/ Bearer token
Zed .zed-plugin/ Bearer token
ChatGPT (OpenAI API) .chatgpt-plugin/ Bearer token
Codeium .codeium-plugin/ Bearer token
Gemini CLI .gemini-plugin/ Bearer token

MCP Server

Available Tools

Tool Description
domain_search Find all emails for a company domain
email_finder Discover a person's email via name + company
email_verifier Validate email deliverability, MX, SMTP
email_enrichment Get full contact and company profiles
email_count Count public emails for a domain
author_finder Extract author email from article URLs
linkedin_finder Convert LinkedIn profiles to verified emails
phone_finder Retrieve validated phone numbers
phone_validator Verify phone numbers with carrier details
technology_finder Identify website technology stacks
similar_finder Discover competitor/lookalike companies
companies_search Query company database by attributes

All tool definitions are maintained in shared/tools.json as a single source of truth.

Resources

Resource URI Description
Account Info tomba://account Current account information and usage
Domain Stats tomba://domain/{domain}/stats Email statistics for a domain
Usage Stats tomba://usage API usage statistics

Prompts

12 pre-built prompts for common workflows:

Prompt Description
lead-research Research a company and find key contacts for outreach
competitor-analysis Analyze competitors including tech stack, team structure, and contacts
email-verification Verify a list of email addresses
find-person Find a specific person's email at a company
content-outreach Find authors and content creators for outreach campaigns
account-based-marketing Build comprehensive ABM campaigns with multi-stakeholder targeting
investor-research Research VCs/investors, portfolio companies, and find decision makers
hiring-outreach Source candidates from target companies for recruiting
partnership-research Identify strategic partners and integration opportunities
market-research Conduct industry analysis across multiple companies
sales-territory-mapping Build territory plans with account prioritization and stakeholder mapping
due-diligence Comprehensive company analysis for investment, acquisition, or partnership

Authentication

Option 1: Bearer Token (Recommended)

Encode your credentials as base64:

echo -n 'ta_your_api_key:ts_your_secret_key' | base64

Use the result as:

Authorization: Bearer <base64_token>

Option 2: API Headers

X-Tomba-Key: ta_your_api_key
X-Tomba-Secret: ts_your_secret_key

Setup

1. Get API Credentials

  1. Sign up at app.tomba.io/auth/register
  2. Get your API key (ta_xxx) and secret (ts_xxx) from app.tomba.io/api
  3. Copy .env.example to .env and fill in your credentials

2. Configure Your Platform

<details> <summary><strong>Claude Desktop</strong></summary>

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "tomba": {
      "url": "https://mcp.tomba.io/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BASE64_TOKEN"
      }
    }
  }
}

</details>

<details> <summary><strong>Claude Code</strong></summary>

Run:

claude mcp add tomba --transport http --url https://mcp.tomba.io/mcp \
  --header "Authorization: Bearer YOUR_BASE64_TOKEN"

</details>

<details> <summary><strong>Cursor AI</strong></summary>

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "tomba": {
      "url": "https://mcp.tomba.io/mcp",
      "transport": "http",
      "headers": {
        "X-Tomba-Key": "ta_your_api_key",
        "X-Tomba-Secret": "ts_your_secret_key"
      }
    }
  }
}

</details>

<details> <summary><strong>VS Code (GitHub Copilot)</strong></summary>

Add to .vscode/mcp.json:

{
  "inputs": [
    {
      "id": "tomba-bearer",
      "type": "promptString",
      "description": "Tomba Bearer Token (base64 of ta_api_key:ts_secret_key)",
      "password": true
    }
  ],
  "servers": {
    "tomba": {
      "type": "http",
      "url": "https://mcp.tomba.io/mcp",
      "headers": {
        "Authorization": "Bearer ${input:tomba-bearer}"
      }
    }
  }
}

</details>

<details> <summary><strong>Windsurf</strong></summary>

Add to Windsurf MCP settings (~/.codeium/windsurf/mcp_config.json):

{
  "mcpServers": {
    "tomba": {
      "serverUrl": "https://mcp.tomba.io/mcp",
      "transport": "http",
      "headers": {
        "Authorization": "Bearer YOUR_BASE64_TOKEN"
      }
    }
  }
}

</details>

<details> <summary><strong>Zed</strong></summary>

Add to Zed settings.json:

{
  "context_servers": {
    "tomba": {
      "settings": {
        "url": "https://mcp.tomba.io/mcp",
        "headers": {
          "Authorization": "Bearer YOUR_BASE64_TOKEN"
        }
      }
    }
  }
}

</details>

<details> <summary><strong>ChatGPT (OpenAI Responses API)</strong></summary>

Use the MCP tool type in the OpenAI Responses API:

curl https://api.openai.com/v1/responses \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4.1",
    "tools": [
      {
        "type": "mcp",
        "server_label": "tomba",
        "server_url": "https://mcp.tomba.io/mcp",
        "headers": {
          "Authorization": "Bearer YOUR_TOMBA_BASE64_TOKEN"
        },
        "require_approval": "never"
      }
    ],
    "input": "Find all emails for tomba.io"
  }'

</details>

<details> <summary><strong>Codeium</strong></summary>

Add to Codeium MCP settings:

{
  "mcpServers": {
    "tomba": {
      "url": "https://mcp.tomba.io/mcp",
      "transport": "http",
      "headers": {
        "Authorization": "Bearer YOUR_BASE64_TOKEN"
      }
    }
  }
}

</details>

<details> <summary><strong>Gemini CLI</strong></summary>

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "tomba": {
      "url": "https://mcp.tomba.io/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BASE64_TOKEN"
      }
    }
  }
}

</details>

Tomba CLI

The Tomba CLI provides direct terminal access to the same capabilities.

# Install
curl -sSL https://releases.tomba.io/install.sh | sh

# Authenticate
tomba login

# Usage
tomba search --target "example.com"
tomba finder --target "example.com" --first "John" --last "Doe"
tomba verify --target "user@example.com"
tomba enrich --target "user@example.com"
tomba linkedin --target "https://linkedin.com/in/profile"
tomba phone-finder --email "user@example.com"
tomba reveal --query "SaaS companies in San Francisco"

Contributing

See CONTRIBUTING.md for guidelines on adding new platform plugins.

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选