home / mcp / email social media checker mcp server
Provides access to the Email Social Media Checker API via an MCP server using stdio transport.
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.
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.
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_checkerAuthentication 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"
}
}
}
}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.pyChecks given email address via GET /check_email with parameter email