From 93a7bdd97231390aace0109193161e7e64ad6736 Mon Sep 17 00:00:00 2001 From: Den Delimarsky <53200638+localden@users.noreply.github.com> Date: Mon, 23 Feb 2026 21:42:40 -0800 Subject: [PATCH 1/2] Update records.ts --- src/config/records.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/records.ts b/src/config/records.ts index a47e49d..f523ca5 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' }, From a315573c576f3ac5aa40f42092832fedbf888619 Mon Sep 17 00:00:00 2001 From: Den Delimarsky Date: Tue, 24 Feb 2026 05:48:13 +0000 Subject: [PATCH 2/2] Format records.ts with prettier :house: Remote-Dev: homespace --- src/config/records.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/config/records.ts b/src/config/records.ts index f523ca5..4ca673a 100644 --- a/src/config/records.ts +++ b/src/config/records.ts @@ -41,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 { @@ -64,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 {