- Home
- MCP servers
- MyIP
MyIP
- other
0
GitHub Stars
other
Language
7 months ago
First Indexed
3 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": {
"nikolaypavlov-mcp-myip": {
"command": "uvx",
"args": [
"mcp-myip"
]
}
}
}This MCP server provides a lightweight way to fetch your public IP information by exposing a single tool that queries ifconfig.me. It’s useful for quick IP checks, debugging network configurations, or proofs of public visibility in automated workflows.
How to use
You run the MCP client against this server to request your public IP information. Use the get_ip_info tool to obtain your current external address. When you invoke the tool, you’ll receive the public IP as seen by external services, which can help you verify connectivity, firewall rules, or geo-location data for your setups.
How to install
Prerequisites: ensure you have an MCP client installed that can connect to an MCP server. This server is configured to run via a local process using uvx with a defined command.
- Clone the project (if you’re pulling a copy to run locally):
- Install dependencies (if any exist for your environment):
- Start using the MCP URL/command as described in your MCP client setup.
Additional notes
Configuration for this MCP server is shown below. This defines a local process that the MCP client can start and communicate with using standard MCP conventions.
{
"mcpServers": {
"myip": {
"command": "uvx",
"args": ["mcp-myip"]
}
}
}
Available tools
get_ip_info
Retrieves your public IP information by querying ifconfig.me, returning the address visible to external services.