Setup ZeroBounce MCP in Other Clients

Complete setup guide for using ZeroBounce MCP server in Other MCP Clients.

Prerequisites

  • Node.js installed (verify with node --version)
  • ZeroBounce API key from ZeroBounce Dashboard
  • Other MCP Clients installed and ready to configure

1Installation

Install the ZeroBounce MCP server globally:

Terminal
$npm install -g @zerobounce/mcp

2Configuration

a

Install the MCP Server

Run the installation command in your terminal

b

Locate Configuration File

Find your client's configuration file location (see examples below)

c

Add Configuration

Add the ZeroBounce MCP server configuration to your client's config file

d

Replace API Key

Replace YOUR_API_KEY with your actual ZeroBounce API key from the dashboard

e

Restart Client

Restart your MCP client for the changes to take effect

Configuration JSON:

mcp-config.json
{
  "mcpServers": {
    "zerobounce": {
      "command": "zerobounce-mcp",
      "args": ["--api-key=YOUR_API_KEY"]
    }
  }
}

Important: Replace YOUR_API_KEY with your actual ZeroBounce API key

Client-Specific Examples

Claude Desktop

Config location: ~/Library/Application Support/Claude/claude_desktop_config.json

config.json
{
  "mcpServers": {
    "zerobounce": {
      "command": "zerobounce-mcp",
      "args": ["--api-key=YOUR_API_KEY"]
    }
  }
}

Continue (VS Code Extension)

Config location: .continue/config.json (workspace or home directory)

config.json
{
  "mcpServers": [
    {
      "name": "zerobounce",
      "command": "zerobounce-mcp",
      "args": ["--api-key=YOUR_API_KEY"]
    }
  ]
}

Zed Editor

Config location: ~/.config/zed/settings.json

config.json
{
  "mcp": {
    "servers": {
      "zerobounce": {
        "command": "zerobounce-mcp",
        "args": ["--api-key=YOUR_API_KEY"]
      }
    }
  }
}

Troubleshooting

Configuration File Not Found

  • Check your client's documentation for the correct configuration file location
  • Some clients may require creating the configuration file if it doesn't exist
  • Ensure you have write permissions to the configuration directory

Invalid Configuration Format

  • Verify the JSON syntax is correct (use a JSON validator)
  • Check that your client uses the standard MCP configuration format
  • Refer to your client's documentation for any format variations

Server Not Working

  • Verify Node.js is installed: run `node --version`
  • Ensure the zerobounce-mcp command is available in your PATH
  • Check your client's logs for error messages
  • Verify your API key is correct and active

Get Your API Key

Sign in to your ZeroBounce account to create or copy your API key for this integration.

Get API Key