diff --git a/src/config/records.ts b/src/config/records.ts index a47e49d..4ca673a 100644 --- a/src/config/records.ts +++ b/src/config/records.ts @@ -20,6 +20,7 @@ export const DNS_RECORDS: Record = { { subdomain: 'example-client', type: 'CNAME', content: 'modelcontextprotocol.github.io' }, { subdomain: 'maintainers', type: 'CNAME', content: 'modelcontextprotocol.github.io' }, { subdomain: 'static', type: 'CNAME', content: 'modelcontextprotocol.github.io' }, + { subdomain: 'apps.extensions', type: 'CNAME', content: 'modelcontextprotocol.github.io' }, // Other subdomains { subdomain: 'example-server', type: 'CNAME', content: 'ghs.googlehosted.com' }, @@ -40,7 +41,11 @@ export const DNS_RECORDS: Record = { }, // DMARC - { subdomain: '_dmarc', type: 'TXT', content: 'v=DMARC1; p=none; rua=mailto:dmarc-reports@modelcontextprotocol.io' }, + { + subdomain: '_dmarc', + type: 'TXT', + content: 'v=DMARC1; p=none; rua=mailto:dmarc-reports@modelcontextprotocol.io', + }, // Google site verifications { @@ -63,12 +68,8 @@ export const DNS_RECORDS: Record = { content: '1d4b431f4dc23d532fd33da4596bcf', }, ], - 'modelcontextprotocol.net': [ - { subdomain: '@', type: 'A', content: '76.76.21.21' }, - ], - 'modelcontextprotocol.org': [ - { subdomain: '@', type: 'A', content: '76.76.21.21' }, - ], + 'modelcontextprotocol.net': [{ subdomain: '@', type: 'A', content: '76.76.21.21' }], + 'modelcontextprotocol.org': [{ subdomain: '@', type: 'A', content: '76.76.21.21' }], }; interface DnsRecordConfig {