@anymailfinder/mcp-server 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -43
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # @anymailfinder/mcp-server
2
2
 
3
- 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).
3
+ 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>.
4
4
 
5
5
  ## Prerequisites
6
6
 
7
- - **Node.js 20 or later** -- check with `node --version` ([download](https://nodejs.org))
8
- - **Anymail Finder API key** -- get one at [anymailfinder.com](https://newapp.anymailfinder.com/settings/api)
7
+ - **Node.js 20 or later** -- check with `node --version` (<a href="https://nodejs.org" target="_blank">download</a>)
8
+ - **Anymail Finder API key** -- get one at <a href="https://newapp.anymailfinder.com/settings/api" target="_blank">anymailfinder.com</a>
9
9
 
10
10
  ## Available Tools
11
11
 
@@ -74,46 +74,6 @@ Add to `.cursor/mcp.json` in your project or `~/.cursor/mcp.json` globally:
74
74
 
75
75
  Restart Cursor after saving.
76
76
 
77
- ## Troubleshooting
78
-
79
- ### "fetch is not defined" error
80
-
81
- 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.
82
-
83
- **Fix:** replace `"npx"` with the full path to your Node binary:
84
-
85
- ```json
86
- {
87
- "mcpServers": {
88
- "anymailfinder": {
89
- "command": "/path/to/node",
90
- "args": ["/path/to/global/node_modules/@anymailfinder/mcp-server/build/index.js"],
91
- "env": {
92
- "ANYMAIL_FINDER_API_KEY": "your-api-key"
93
- }
94
- }
95
- }
96
- }
97
- ```
98
-
99
- Find your Node path with:
100
-
101
- ```bash
102
- which node
103
- # e.g. /Users/you/.nvm/versions/node/v20.18.1/bin/node
104
- ```
105
-
106
- ### "ANYMAIL_FINDER_API_KEY environment variable is required"
107
-
108
- You didn't set the API key in the `env` block of your MCP config. See setup instructions above.
109
-
110
- ## Environment Variables
111
-
112
- | Variable | Required | Default | Description |
113
- |---|---|---|---|
114
- | `ANYMAIL_FINDER_API_KEY` | Yes | — | Your Anymail Finder API key |
115
- | `ANYMAIL_FINDER_API_URL` | No | `https://api.anymailfinder.com` | Override API base URL |
116
-
117
77
  ## Development
118
78
 
119
79
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anymailfinder/mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for Anymail Finder API - find and verify email addresses via AI assistants",
5
5
  "author": {
6
6
  "name": "Anymail Finder"
@@ -23,7 +23,8 @@
23
23
  "anymailfinder-mcp-server": "./build/index.js"
24
24
  },
25
25
  "files": [
26
- "build"
26
+ "build",
27
+ "README.md"
27
28
  ],
28
29
  "scripts": {
29
30
  "build": "tsc && chmod +x build/index.js",