Docs
Complete setup guide for using ZeroBounce MCP server in Cursor.
node --version)Install the ZeroBounce MCP server globally:
npm install -g @zerobounce/mcpClick on the Cursor menu and select "Settings" → "Cursor Settings"
Look for the "MCP" section in settings
Click "Add new global MCP server" to open the configuration editor
Copy and paste the configuration JSON, replacing YOUR_API_KEY with your actual ZeroBounce API key
Close and reopen Cursor for the changes to take effect
Configuration JSON:
{
"mcpServers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}YOUR_API_KEY with your actual ZeroBounce API key.Try these commands in your AI client:
node --version in terminalapi.zerobounce.netSign in to your ZeroBounce account to create or copy your API key for this integration.
Complete setup guide for using ZeroBounce MCP server in VS Code.
node --version)Install the ZeroBounce MCP server globally:
npm install -g @zerobounce/mcpOpen VS Code, press Ctrl+Shift+X (Windows/Linux) or Cmd+Shift+X (macOS), search for "Model Context Protocol" or "MCP" and install the official MCP extension
Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (macOS)
Type "MCP: Add Server" and select it from the list
Select whether to add the server for the current workspace or globally for your user
Copy and paste the configuration JSON, replacing YOUR_API_KEY with your actual ZeroBounce API key
The MCP server should now be available in VS Code
Configuration JSON:
{
"mcpServers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}YOUR_API_KEY with your actual ZeroBounce API key.Try these commands in your AI client:
node --version in integrated terminalapi.zerobounce.netSign in to your ZeroBounce account to create or copy your API key for this integration.
Complete setup guide for using ZeroBounce MCP server in Other MCP Clients.
node --version)Install the ZeroBounce MCP server globally:
npm install -g @zerobounce/mcpRun the installation command in your terminal
Find your client's configuration file location (see examples below)
Add the ZeroBounce MCP server configuration to your client's config file
Replace YOUR_API_KEY with your actual ZeroBounce API key from the dashboard
Restart your MCP client for the changes to take effect
Configuration JSON:
{
"mcpServers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}YOUR_API_KEY with your actual ZeroBounce API key.Config location: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}Config location: .continue/config.json (workspace or home directory)
{
"mcpServers": [
{
"name": "zerobounce",
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
]
}Config location: ~/.config/zed/settings.json
{
"mcp": {
"servers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}
}Config location: %APPDATA%\\Claude\\claude_desktop_config.json
{
"mcpServers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}Config location: .continue/config.json (workspace or home directory)
{
"mcpServers": [
{
"name": "zerobounce",
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
]
}Config location: %APPDATA%\\Zed\\settings.json
{
"mcp": {
"servers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}
}Config location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}Config location: .continue/config.json (workspace or home directory)
{
"mcpServers": [
{
"name": "zerobounce",
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
]
}Config location: ~/.config/zed/settings.json
{
"mcp": {
"servers": {
"zerobounce": {
"command": "zerobounce-mcp",
"args": ["--api-key=YOUR_API_KEY"]
}
}
}
}node --versionzerobounce-mcp command is available in your PATHSign in to your ZeroBounce account to create or copy your API key for this integration.