securitytrails_dns_history

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

Historical DNS records for . Returns past record values with first/last-seen dates for a given record type (a, aaaa, mx, ns, soa, txt). Example: securitytrails_dns_history({ hostname: “github.com”, type: “a”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
hostnamestringyesApex domain / hostname, e.g. “github.com”
typestringnoDNS record type: a, aaaa, mx, ns, soa, or txt (default “a”)
_apiKeystringyesSecurityTrails API key

Example call

Arguments

{
  "hostname": "github.com",
  "type": "a",
  "_apiKey": "your-securitytrails-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/securitytrails/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"securitytrails_dns_history","arguments":{"hostname":"github.com","type":"a","_apiKey":"your-securitytrails-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('securitytrails_dns_history', {
  "hostname": "github.com",
  "type": "a",
  "_apiKey": "your-securitytrails-api-key"
});

More examples

{
  "hostname": "example.org",
  "type": "mx",
  "_apiKey": "your-securitytrails-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026