- Home
- MCP servers
- Findymail
Findymail
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"meerkats-ai-findymail-mcp-server": {
"command": "node",
"args": [
"path/to/findymail/dist/index.js"
],
"env": {
"FINDYMAIL_API_KEY": "your_api_key_here"
}
}
}
}You run an MCP server that ties the Findymail API into your MCP ecosystem to validate email addresses and locate work emails for individuals. This server exposes tools for verifying deliverability and discovering contacts, making it easier to integrate email-related capabilities into your apps or workflows.
How to use
Use this MCP server with your MCP client to validate emails and to find work emails for individuals. You can run the server locally or connect to it via an MCP-enabled orchestrator. The available tools are findymail_validate_email, findymail_find_work_email, and findymail_find_work_email_from_profile. Provide the relevant input data for each tool to perform validation or discovery, and rely on the results to power signups, outreach, or data enrichment flows.
How to install
Prerequisites: you need Node.js and npm installed on your system.
Step 1: Clone the project to your workspace.
Step 2: Install dependencies.
Step 3: Create a .env file based on the sample and set your Findymail API key.
Step 4: Build the server.
Step 5: Start the server.
Configuration and notes
{
"mcpServers": {
"findymail": {
"command": "node",
"args": ["path/to/findymail/dist/index.js"],
"env": {
"FINDYMAIL_API_KEY": "your_api_key_here"
},
"disabled": false,
"autoApprove": []
}
}
}
Available tools
findymail_validate_email
Validate an email address to check if it is valid and deliverable.
findymail_find_work_email
Find a work email for an individual using their name and company information.
findymail_find_work_email_from_profile
Find a work email for an individual using their profile URL (such as LinkedIn).