parse_ip

Pack: ipaddress · Endpoint: https://gateway.pipeworx.io/ipaddress/mcp

Validate and classify an IP address (IPv4 or IPv6): version, validity, and classification (private/loopback/link-local/multicast/reserved/public). IPv4 also returns its 32-bit integer. Keyless, offline.

Parameters

NameTypeRequiredDescription
ipstringyesAn IPv4 or IPv6 address, e.g. “192.168.1.10” or “2001:db8::1”.

Example call

Arguments

{
  "ip": "192.168.1.10"
}

curl

curl -X POST https://gateway.pipeworx.io/ipaddress/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"parse_ip","arguments":{"ip":"192.168.1.10"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('parse_ip', {
  "ip": "192.168.1.10"
});

More examples

{
  "ip": "2001:db8::1"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ipaddress": {
      "url": "https://gateway.pipeworx.io/ipaddress/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026