get_custom_domain
Retrieve your custom domain configuration and DNS verification status for QR codes, including setup instructions to complete the process.
Instructions
Get your current custom domain configuration and DNS verification status. Returns the domain, whether DNS is active or pending, and setup instructions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools.ts:815-822 (handler)The handler implementation for get_custom_domain, which makes a GET request to the /api/domain endpoint.
get_custom_domain: { description: "Get your current custom domain configuration and DNS verification status. Returns the domain, whether DNS is active or pending, and setup instructions.", inputSchema: z.object({}), handler: async () => { return apiRequest("/api/domain"); }, },