DNS

live Networking

DNS lookups, reverse DNS, and multi-record queries via Google DNS-over-HTTPS

3 tools
0ms auth
free forever

Tools

dns_lookup required: domain

Query DNS records for a domain

Parameters
Name Type Description
domain req string Domain name
type opt string Record type (A, AAAA, MX, NS, TXT, CNAME — default A)
dns_lookup_all required: domain

Get all common DNS record types for a domain at once

Parameters
Name Type Description
domain req string Domain name
reverse_dns required: ip

Reverse DNS lookup for an IP address

Parameters
Name Type Description
ip req string IPv4 address

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/dns/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/dns/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"dns_lookup","arguments":{"domain": "example"}}}'