Skip to main content
Glama
README.md
# IP Find MCP Server

A Model Context Protocol server that enables AI assistants to use IP Find. 

## How It Works

The MCP server:

-   Connects to your IP Find API and allows AI Assistants to get locations of IP Addresses.

## Usage with Claude Desktop

### Prerequisites

-   NodeJS
-   MCP Client (like Claude Desktop App)
-   IP Find API Key

### Installation

To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your `claude_desktop_config.json`:

```json
{
    "mcpServers": {
        "ipfind": {
            "command": "npx",
            "args": ["-y", "@ipfind/ipfind-mcp-server"],
            "env": {
                "IPFIND_API_KEY": "<API KEY GOES HERE>"
            }
        }
    }
}
```

-   `IPFIND_API_KEY` - You can generate an API key at IPfind.com.


Certified by [MCPHub](https://mcphub.com/mcp-servers/ipfind/ipfind-mcp-server)

TDQS

A3.5/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_api_usage monitors API usage, get_ip_location finds the location of a specified IP, and get_my_location finds the location of the current IP. There is no overlap or ambiguity between these functions.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with the prefix 'get_' and descriptive nouns (api_usage, ip_location, my_location). This makes the tools predictable and easy to understand.

Tool Count5/5

With 3 tools, the server is well-scoped for IP location and API usage tracking. Each tool serves a clear, non-redundant function, making the count appropriate for the domain.

Completeness4/5

The tools cover core IP location queries (for specified and current IPs) and API usage monitoring, which are essential for the server's purpose. A minor gap might be the lack of tools for bulk IP lookups or historical data, but the basic functionality is complete.

Maintenance

ActivityInactive
ResponsivenessNo issues