IP Address Classifier
Paste any IPv4 or IPv6 address and see whether it's public, private, loopback, multicast, reserved, or carrier-grade NAT.
IPv4 · private
Private (RFC 1918)
Class-A private block. Not routable on the public internet.
Reference: RFC 1918
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl
curl https://api.b-e-a-d.com/tools/ip-classifier/run \
-H "Content-Type: application/json" \
-d '{
"input": "your input here"
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/ip-classifier/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"input": "your input here"
}),
});
const data = await res.json();
console.log(data.result);MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_ip_classifierFull reference: developer docs · OpenAPI spec
What we check
Classifications are taken from the IANA Special-Purpose Address Registry — RFC 6890 for IPv4 and RFC 4291 / 6890 for IPv6.
For subnet maths and host counts, pair this with the CIDR / Subnet Calculator.
You might also like
- CIDR / Subnet CalculatorCompute network, broadcast, host range, count, and mask for any IPv4 CIDR.
- DNS LookupQuery A, AAAA, MX, TXT, NS, CNAME, SOA, CAA, and SRV records via Cloudflare's DNS-over-HTTPS API.
- IP Address ConverterConvert IPv4 between dotted decimal, integer, hex, and binary notations. Compress and expand IPv6.
- SPF / DKIM / DMARC ParserPaste an email-auth TXT record and see it broken down, validated, and explained.