- Home
- MCP servers
- IP Find
IP Find
- javascript
2
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 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": {
"ipfind-ipfind-mcp-server": {
"command": "npx",
"args": [
"-y",
"@ipfind/ipfind-mcp-server"
],
"env": {
"IPFIND_API_KEY": "<API KEY GOES HERE>"
}
}
}
}You can run an IP Find MCP Server to let AI assistants query IP Find for IP address locations. It acts as a bridge between your AI client and IP Find, making location data available in MCP workflows.
How to use
To use the IP Find MCP Server with your MCP client, install and run the server alongside your client, then provide your IP Find API key in the coordinator configuration. The server connects to IP Find, returning location data for queried IP addresses to your AI assistants. Use this to enrich conversations with geolocation insights, fraud checks, or targeted routing.
How to install
Prerequisites you need before installing this MCP Server are NodeJS, an MCP Client (such as Claude Desktop App), and an IP Find API Key.
Install and configure the MCP server in your client’s MCP configuration by adding the following to the mcpServers section of your claude_desktop_config.json. This entry sets up the IP Find MCP server and injects your API key.
{
"mcpServers": {
"ipfind": {
"command": "npx",
"args": ["-y", "@ipfind/ipfind-mcp-server"],
"env": {
"IPFIND_API_KEY": "<API KEY GOES HERE>"
}
}
}
}
Additional notes
The API key you need comes from IPfind. Generate it at IPfind.com and paste it into the configuration as shown above.
If you ever need to update the API key, modify the IPFIND_API_KEY value in the same configuration block and restart the MCP client to apply changes.