
revenuebase-mcp-server
revenuebase-mcp-server
README
RevenueBase MCP Server
A Model Context Protocol (MCP) server that provides access to RevenueBase's industry-leading email verification API. This server enables AI assistants and applications to verify business emails, including catch-all and firewall-protected domains, with over 99% accuracy.
Features
- Real-time Email Verification: Verify individual email addresses instantly
- Batch Email Processing: Submit and process large email lists
- Process Management: Monitor, cancel, and track batch processing jobs
- Credit Management: Check remaining API credits
- API Key Management: Generate new API keys
- High Accuracy: Over 99% accuracy for B2B email verification
- Catch-All Domain Support: Verify catch-all email domains that other tools can't handle
- Firewall Navigation: Bypass email firewalls like Mimecast and Barracuda
About RevenueBase
RevenueBase provides industry-leading email verification services specifically built for B2B data providers. With the ability to verify catch-all and firewall-protected domains, RevenueBase ensures maximum accuracy where other services fall short.
Learn more about RevenueBase's email verification services at: https://revenuebase.ai/email-list-cleaning/
Installation
- Clone this repository:
git clone https://github.com/avivshafir/revenuebase-mcp-server
cd revenuebase-mcp-server
- Install dependencies using uv:
uv sync
- Set up your RevenueBase API key:
export REVENUEBASE_API_KEY="your_api_key_here"
Usage
Running the Server
python server.py
The server will start and be available for MCP connections.
Using with MCP Clients
Claude Desktop
To use this server with Claude Desktop, add the following configuration to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"revenuebase": {
"command": "uv",
"args": ["--directory", "/path/to/revenuebase-mcp-server", "run", "python", "server.py"],
"env": {
"REVENUEBASE_API_KEY": "your_api_key_here"
}
}
}
}
Replace /path/to/revenuebase-mcp-server
with the actual path to your cloned repository and your_api_key_here
with your actual RevenueBase API key.
Other MCP Clients
For other MCP clients, you can connect to the server using the stdio transport. The server runs as a standard MCP server and accepts connections on stdin/stdout.
Example using the MCP Python SDK:
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
server_params = StdioServerParameters(
command="python",
args=["server.py"],
env={"REVENUEBASE_API_KEY": "your_api_key_here"}
)
async with stdio_client(server_params) as (read, write):
async with ClientSession(read, write) as session:
# Initialize the connection
await session.initialize()
# List available tools
tools = await session.list_tools()
print("Available tools:", [tool.name for tool in tools.tools])
# Call a tool
result = await session.call_tool("real_time_email_verification", {
"email": "test@example.com"
})
print("Verification result:", result)
Available Tools
1. Real-time Email Verification
Verify a single email address instantly.
Parameters:
email
(string): The email address to verify
Example:
real_time_email_verification("user@example.com")
2. Batch Email Submission
Submit a file reference for batch email processing.
Parameters:
filename
(string): The filename reference for batch processing
Example:
batch_email_submission("email_list.csv")
3. Batch Process Status
Check the status of a batch email processing job.
Parameters:
process_id
(int): The ID of the batch processing job
Example:
batch_process_email_status(12345)
4. Queued Processes
List all queued email batch processing jobs.
Example:
queued_process()
5. Cancel Process
Cancel an ongoing or queued batch email processing job.
Parameters:
process_id
(int): The ID of the process to cancel
Example:
cancel_process(12345)
6. Get Credits
Retrieve the number of remaining credits for your account.
Example:
get_credits()
7. Generate New API Key
Generate and return a new API key.
Example:
new_api_key()
Configuration
Environment Variables
REVENUEBASE_API_KEY
: Your RevenueBase API key (required)
API Endpoints
The server connects to the following RevenueBase API endpoints:
https://api.revenuebase.ai/v1/process-email
- Real-time email verificationhttps://api.revenuebase.ai/v1/batch-process-email
- Batch email submissionhttps://api.revenuebase.ai/v1/batch-process-email-status
- Batch status checkhttps://api.revenuebase.ai/v1/queued-process
- List queued processeshttps://api.revenuebase.ai/v1/cancel-process
- Cancel processhttps://api.revenuebase.ai/v1/credits
- Get creditshttps://api.revenuebase.ai/v1/new-api-key
- Generate new API key
Error Handling
All tools include proper error handling and will raise RuntimeError
if the API key is not configured. HTTP errors from the RevenueBase API are automatically raised using requests.raise_for_status()
.
Requirements
- Python 3.7+
- fastmcp
- requests
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
For RevenueBase API support and documentation, visit:
For issues with this MCP server, please open an issue in this repository.
推荐服务器

Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。