list_dns_providers
Discover available DNS providers for configuring DNS challenge certificates in Nginx Proxy Manager to automate SSL certificate issuance.
Instructions
List supported DNS providers for DNS challenge certificates
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/npm_mcp/client.py:198-200 (handler)The implementation of list_dns_providers in the NPMClient class.
async def list_dns_providers(self) -> list[dict]: response = await self._request("GET", "/api/nginx/certificates/dns-providers") return response.json()