🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@anymailfinder/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@anymailfinder/mcp-server

MCP server for Anymail Finder API - find and verify email addresses via AI assistants

latest
npmnpm
Version
1.0.7
Version published
Maintainers
1
Created
Source

@anymailfinder/mcp-server

MCP server for the Anymail Finder API. Lets AI assistants (Claude, Cursor, ChatGPT, etc.) find and verify email addresses natively via the Model Context Protocol.

Prerequisites

  • Node.js 20 or later -- check with node --version (download)
  • Anymail Finder API key -- get one at anymailfinder.com

Available Tools

ToolDescriptionCredits
find_person_emailFind a person's email by name + company domainYes
find_company_emailsFind up to 20 emails for a company domainYes
find_email_by_linkedinFind email from a LinkedIn profile URLYes
find_decision_makerFind a decision maker's email by role categoryYes
verify_emailCheck if an email is valid, risky, or invalidYes
get_account_infoCheck remaining API creditsNo
report_bad_emailReport an incorrect emailNo

Setup

Claude Desktop

Add to your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Open it from a terminal:

# macOS
open ~/Library/Application\ Support/Claude/claude_desktop_config.json

# Windows
notepad %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "anymailfinder": {
      "command": "npx",
      "args": ["-y", "@anymailfinder/mcp-server"],
      "env": {
        "ANYMAIL_FINDER_API_KEY": "your-api-key"
      }
    }
  }
}

Fully quit and reopen Claude Desktop after saving (Cmd+Q on macOS).

Cursor

Add to .cursor/mcp.json in your project or ~/.cursor/mcp.json globally:

{
  "mcpServers": {
    "anymailfinder": {
      "command": "npx",
      "args": ["-y", "@anymailfinder/mcp-server"],
      "env": {
        "ANYMAIL_FINDER_API_KEY": "your-api-key"
      }
    }
  }
}

Restart Cursor after saving.

Development

cd mcp
yarn install
yarn build

# Test interactively with MCP Inspector
ANYMAIL_FINDER_API_KEY=your-key npx @modelcontextprotocol/inspector node build/index.js

# Run directly (stdio mode)
ANYMAIL_FINDER_API_KEY=your-key node build/index.js

License

MIT

Keywords

mcp

FAQs

Package last updated on 26 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts