drio
Open app

MyIP MCP Server

Source

A Model Context Protocol (MCP) server for providing your public IP to LLMs

Catalog onlyCatalog onlySTDIO

Overview

MyIP MCP Server is a Model Context Protocol (MCP) server designed to provide your public IP address to Large Language Models (LLMs).

To use the MyIP MCP Server, you need to install it by following the provided installation instructions and then utilize the get_ip_info tool to retrieve your public IP address.

  • Exposes a get_ip_info tool for retrieving public IP addresses. - Simple installation process using MCP commands.
  1. Providing public IP information to LLMs for context-aware responses.
  2. Integrating with applications that require public IP data.

Add to your AI client

Use these steps to connect MyIP MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-myip-nikolaypavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-myip-nikolaypavlov"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-myip-nikolaypavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-myip-nikolaypavlov"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-myip-nikolaypavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-myip-nikolaypavlov"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-myip-nikolaypavlov": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-myip-nikolaypavlov"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-myip-nikolaypavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-myip-nikolaypavlov"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-myip-nikolaypavlov": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-myip-nikolaypavlov"
      ]
    }
  }
}

FAQ

What is the purpose of the MyIP MCP Server?

The MyIP MCP Server is used to provide public IP addresses to LLMs, enhancing their context awareness.

How do I install the MyIP MCP Server?

You can install it by following the installation instructions provided in the documentation.

Is there any cost associated with using the MyIP MCP Server?

No, the MyIP MCP Server is free to use.