home / mcp / email social media checker mcp server

Email Social Media Checker MCP Server

Provides access to the Email Social Media Checker API via an MCP server using stdio transport.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "bach-ai-tools-bachai-email-social-media-checker": {
      "command": "python",
      "args": [
        "server.py"
      ],
      "env": {
        "API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

This MCP server provides access to the Email Social Media Checker API through a standardized, easy-to-use interface. It runs with a stdio transport, letting you launch it from your development or deployment environment and integrate email checks into your applications with minimal setup.

How to use

You run the Email Social Media Checker MCP Server from an MCP client or via a local runtime, then call the available tool to check an email. The server uses a simple start command and reads your API key from an environment variable to authorize requests.

How to install

Prerequisites: you need Python or an MCP runtime capable of starting stdio MCPs. You may also use uvx for a zero-config startup.

# PyPI installation (typical for local testing)
pip install bach-email_social_media_checker

# Run in development mode
python server.py

# Or use uvx with the provided package name (recommended for MCP workflows)
uvx --from bach-email_social_media_checker bach_email_social_media_checker

# Or specify the latest version
uvx --from bach-email_social_media_checker@latest bach_email_social_media_checker

Additional configuration and usage notes

Authentication is required. Set your API key in the environment so the server can authorize requests.

{
  "mcpServers": {
    "bach-email_social_media_checker": {
      "command": "uvx",
      "args": ["--from", "bach-email_social_media_checker", "bach_email_social_media_checker"],
      "env": {
        "API_KEY": "your_api_key_here"
      }
    }
  }
}

Additional runtime options

If you prefer running directly in development mode, you can start the server with Python (no extra tooling required) and then call the exposed endpoint to check emails.

python server.py

Available tools

check_email

Checks given email address via GET /check_email with parameter email

Email Social Media Checker MCP Server - bach-ai-tools/bachai-email-social-media-checker