원클릭으로
ip-lookup
Look up public IP address and geolocation information for any IP or your own
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Look up public IP address and geolocation information for any IP or your own
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create vertical short-form videos from YouTube with auto-highlights, subtitles, and thumbnails
Delivers a personalized morning briefing with tasks, emails, calendar events, news, and system status.
Intelligent email management with auto-classification, bulk processing, and smart replies
Complete email OAuth authentication flows interactively via Telegram chat
Configure OAuth 2.0 authentication for Gmail, Outlook, or Yahoo email accounts
Send SMS via Alibaba Cloud (阿里云短信)
| name | ip-lookup |
| description | Look up public IP address and geolocation information for any IP or your own |
| version | 1.0.0 |
| author | OpenIntentOS |
| tags | ["network","utility","geolocation"] |
| requires | {"bins":["curl"],"env":[]} |
| tools | [{"name":"lookup","description":"Look up geolocation and network info for an IP address (or own public IP if no argument given)","script":"./lookup.sh","args":[{"name":"ip","type":"string","required":false,"description":"IP address to look up. Omit to look up the machine's own public IP."}]}] |
Queries ipinfo.io to retrieve geolocation and network information for any IP address. When called without an argument it returns information about the machine's own public IP.
# Own public IP
./lookup.sh
# Specific IP
./lookup.sh 8.8.8.8
./lookup.sh 1.1.1.1
Returns JSON:
{
"ip": "8.8.8.8",
"hostname": "dns.google",
"city": "Mountain View",
"region": "California",
"country": "US",
"org": "AS15169 Google LLC",
"timezone": "America/Los_Angeles",
"loc": "37.3860,-122.0840",
"postal": "94035"
}
jq is used for formatting when available; raw JSON is returned otherwise.