npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@feedmob/iplocate

v0.0.2

Published

MCP Server for IPLocate API - IP geolocation and fraud detection

Readme

IPLocate MCP Server

MCP Server for the IPLocate API, providing IP geolocation and fraud detection capabilities through Claude and other MCP-compatible clients.

Features

This MCP server provides access to the following IPLocate API capabilities:

GeoIP Geolocation

  • Single IP Lookup: Get geographic location for a single IP address
  • Batch Lookup: Query up to 100 IP addresses at once

IP Reputation Check

  • Single Fraud Check: Check reputation and risk level of an IP address
  • Batch Fraud Check: Check up to 50 IP addresses at once
  • Usage Stats: View API quota usage and remaining credits
  • Refresh Quota: Force refresh quota cache for latest information

Installation

From NPM (once published)

npm install -g @feedmob/iplocate

From Source

cd src/iplocate
npm install
npm run build

Configuration

Set the following environment variables:

# Required
IPLOCATE_API_KEY=your_api_key_here

# Optional (defaults to https://iplocate.feedmob.ai)
IPLOCATE_API_BASE=https://iplocate.feedmob.ai

Using with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "iplocate": {
      "command": "npx",
      "args": ["-y", "@feedmob/iplocate"],
      "env": {
        "IPLOCATE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Or if using from source:

{
  "mcpServers": {
    "iplocate": {
      "command": "node",
      "args": ["/absolute/path/to/fm-mcp-servers/src/iplocate/dist/index.js"],
      "env": {
        "IPLOCATE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Available Tools

lookup_ip

Get geographic location information for a single IP address.

Parameters:

  • ip (optional): IP address to lookup. If not provided, uses requester's IP

Example:

lookup_ip with ip="8.8.8.8"

batch_lookup

Get geographic location information for multiple IP addresses at once.

Parameters:

  • ips (required): Array of IP addresses to lookup (max 100)

Example:

batch_lookup with ips=["8.8.8.8", "1.1.1.1", "208.67.222.222"]

fraud_check

Check the reputation and fraud risk level of a single IP address.

Parameters:

  • ip (optional): IP address to check. If not provided, uses requester's IP

Returns:

  • Fraud score (0-100, higher = more risky)
  • Proxy/VPN/Tor detection
  • ISP and organization info
  • Abuse indicators
  • Connection type
  • Risk assessment interpretation

Example:

fraud_check with ip="8.8.8.8"

batch_fraud_check

Check reputation and fraud risk for multiple IP addresses at once.

Parameters:

  • ips (required): Array of IP addresses to check (max 50)

Example:

batch_fraud_check with ips=["8.8.8.8", "1.1.1.1", "9.9.9.9"]

get_usage_stats

View current IPQualityScore API quota usage.

Parameters: None

Returns:

  • Total credits
  • Remaining credits
  • Usage percentage
  • Reset date
  • Below threshold status

Example:

get_usage_stats

refresh_quota

Force refresh the quota cache to get the latest quota information.

Parameters: None

Example:

refresh_quota

Rate Limits and Quotas

  • GeoIP Lookup: Maximum 100 IPs per batch request, no rate limiting
  • Fraud Check: Maximum 50 IPs per batch request, subject to quota limits
  • Quota Protection: System automatically blocks new fraud check requests when remaining quota < 20%
  • Cache:
    • GeoIP lookups: No cache (real-time)
    • Fraud checks: 24-hour cache
    • Quota status: 5-minute cache

Support

For issues or questions:

  • GitHub Issues: https://github.com/feed-mob/fm-mcp-servers/issues

License

MIT