ip-lookup
Get current public IP address and geolocation information. Use when users ask about IP addresses, network location, or want to check their public IP. Supports both fetching IP info and displaying it clearly.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/qidu/get-upIP Lookup Skill
Overview
This skill provides a simple way to check your public IP address and its geolocation information.
Usage
When users ask:
- "What is my IP?"
- "What is my current IP address?"
- "Where am I located?"
- "Check my IP location"
- "What's my public IP?"
- "What's the IP?"
- "What's your IP?"
Execute the workflow below.
Workflow
Basic IP Check
Run this command to get your public IP and location:
curl -s myip.ipip.net
Example output:
Current IP:8.8.8.8 From: SF CA USA Google
Current IP:1.1.1.1 From: SF CA USA Cloudflare
Alternative Methods
If the above fails, try these alternatives:
Method 1: icanhazip.com (fallback)
curl -s icanhazip.com
Method 2: ipify API
curl -s https://api.ipify.org
Method 3: ifconfig.me
curl -s ifconfig.me
Full Geolocation Lookup
For more detailed geolocation info:
curl -s https://ipinfo.io/$(curl -s https://api.ipify.org)/json
Display Format
Present the information clearly:
IP Address: [address] Location: [city], [region], [country] ISP: [ISP name] Org: [organization]
Error Handling
If the primary service (myip.ipip.net) fails:
- Try alternative services one by one
- Report which service succeeded
- If all fail, inform the user about the network issue
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-qidu-get-up": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
ip-lookup
Get current public IP address and geolocation information. Use when users ask about IP addresses, network location, or want to check their public IP. Supports both fetching IP info and displaying it clearly.
wecom
Send messages to WeCom (企业微信) via webhooks using MCP protocol. Works with Claude Code, Claude Desktop, and other MCP clients.