dns_lookup_all
Pack: dns · Endpoint: https://gateway.pipeworx.io/dns/mcp
Query all major DNS record types (A, AAAA, MX, NS, TXT, CNAME) for a domain in one call. Returns results grouped by type with TTLs and values.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | yes | Domain name to look up (e.g., “example.com”) |
Example call
Arguments
{
"domain": "example.com"
}
curl
curl -X POST https://gateway.pipeworx.io/dns/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dns_lookup_all","arguments":{"domain":"example.com"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dns_lookup_all', {
"domain": "example.com"
});
Response shape
Always returns: domain, records
| Field | Type | Description |
|---|---|---|
domain | string | Domain name that was queried |
records | object | DNS records grouped by type |
Full JSON Schema
{
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Domain name that was queried"
},
"records": {
"type": "object",
"description": "DNS records grouped by type",
"additionalProperties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ttl_seconds": {
"type": "number",
"description": "Time-to-live in seconds"
},
"value": {
"type": "string",
"description": "Record data value"
}
},
"required": [
"ttl_seconds",
"value"
]
}
}
}
},
"required": [
"domain",
"records"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dns": {
"url": "https://gateway.pipeworx.io/dns/mcp"
}
}
}
See Getting Started for client-specific install steps.