pressable_list_site_domains
Retrieve all domains associated with a specific WordPress site to manage DNS configurations and verify site accessibility.
Instructions
Get a list of domains for a specific site.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- tools/sites.js:178-188 (handler)The handler and schema definition for the pressable_list_site_domains tool.
name: 'pressable_list_site_domains', description: 'Get a list of domains for a specific site.', inputSchema: { type: 'object', properties: { id: { type: 'string' } }, required: ['id'] }, handler: async (args) => { return await api.get(`/sites/${args.id}/domains`); } },