Back to MCP directory
publicPublicdnsLocal runtime

ipfind-mcp-server

一个基于MCP协议的服务器,使AI助手能够通过IP Find API查询IP地址的地理位置信息。

article

README

🚀 IP Find MCP 服务器

这是一个模型上下文协议(Model Context Protocol)服务器,它能让 AI 助手使用 IP Find 服务,为 AI 助手获取 IP 地址的位置信息提供支持。

🚀 快速开始

本 MCP 服务器的工作原理是连接到您的 IP Find API,进而允许 AI 助手获取 IP 地址的位置信息。

✨ 主要特性

  • 建立与 IP Find API 的连接,助力 AI 助手获取 IP 地址的位置信息。

📦 安装指南

先决条件

  • NodeJS
  • MCP 客户端(如 Claude Desktop 应用程序)
  • IP Find API 密钥

安装步骤

若要在 Claude Desktop 应用程序中使用此服务器,需将以下配置添加到 claude_desktop_config.json 文件的 "mcpServers" 部分:

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

⚠️ 重要提示

IPFIND_API_KEY 可在 IPfind.com 生成。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client