New:Socket for Asana Is Now Available.Learn more
Get Started

@anymailfinder/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@anymailfinder/mcp-server - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+1
-1
package.json
{
"name": "@anymailfinder/mcp-server",
"version": "1.0.0",
"version": "1.0.1",
"description": "MCP server for Anymail Finder API - find and verify email addresses via AI assistants",

@@ -5,0 +5,0 @@ "author": {

# @anymailfinder/mcp-server
MCP server for the [Anymail Finder](https://anymailfinder.com) API. Lets AI assistants (Claude, Cursor, ChatGPT, etc.) find and verify email addresses natively via the [Model Context Protocol](https://modelcontextprotocol.io).
MCP server for the <a href="https://anymailfinder.com" target="_blank">Anymail Finder</a> API. Lets AI assistants (Claude, Cursor, ChatGPT, etc.) find and verify email addresses natively via the <a href="https://modelcontextprotocol.io" target="_blank">Model Context Protocol</a>.
## Prerequisites
- **Node.js 20 or later** -- check with `node --version` ([download](https://nodejs.org))
- **Anymail Finder API key** -- get one at [anymailfinder.com](https://newapp.anymailfinder.com/settings/api)
- **Node.js 20 or later** -- check with `node --version` (<a href="https://nodejs.org" target="_blank">download</a>)
- **Anymail Finder API key** -- get one at <a href="https://newapp.anymailfinder.com/settings/api" target="_blank">anymailfinder.com</a>

@@ -77,42 +77,2 @@ ## Available Tools

## Troubleshooting
### "fetch is not defined" error
This means the MCP client is using a Node.js version older than 18. This commonly happens with **nvm** users because Claude Desktop and Cursor don't load your shell profile.
**Fix:** replace `"npx"` with the full path to your Node binary:
```json
{
"mcpServers": {
"anymailfinder": {
"command": "/path/to/node",
"args": ["/path/to/global/node_modules/@anymailfinder/mcp-server/build/index.js"],
"env": {
"ANYMAIL_FINDER_API_KEY": "your-api-key"
}
}
}
}
```
Find your Node path with:
```bash
which node
# e.g. /Users/you/.nvm/versions/node/v20.18.1/bin/node
```
### "ANYMAIL_FINDER_API_KEY environment variable is required"
You didn't set the API key in the `env` block of your MCP config. See setup instructions above.
## Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
| `ANYMAIL_FINDER_API_KEY` | Yes | — | Your Anymail Finder API key |
| `ANYMAIL_FINDER_API_URL` | No | `https://api.anymailfinder.com` | Override API base URL |
## Development

@@ -119,0 +79,0 @@