pressable_get_dns_records
Retrieve DNS records for a domain zone to manage domain configurations and troubleshoot connectivity issues.
Instructions
Get DNS records for a specific zone.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| zone_name | Yes | The zone name/domain |
Implementation Reference
- tools/dns.js:12-24 (handler)The definition and handler for 'pressable_get_dns_records'. The handler fetches DNS records for a given zone from the API.
{ name: 'pressable_get_dns_records', description: 'Get DNS records for a specific zone.', inputSchema: { type: 'object', properties: { zone_name: { type: 'string', description: 'The zone name/domain' } }, required: ['zone_name'] }, handler: async (args) => { return await api.get(`/dns/zones/${args.zone_name}/records`); }