{"id":43693857,"url":"https://github.com/modelcontextprotocol/dns","last_synced_at":"2026-02-05T04:01:09.429Z","repository":{"id":336171053,"uuid":"1128985783","full_name":"modelcontextprotocol/dns","owner":"modelcontextprotocol","description":"Infrastructure as Code for MCP domains / DNS management","archived":false,"fork":false,"pushed_at":"2026-02-03T04:50:24.000Z","size":73,"stargazers_count":5,"open_issues_count":1,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-03T18:26:26.756Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/modelcontextprotocol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-06T12:48:01.000Z","updated_at":"2026-02-03T04:50:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/modelcontextprotocol/dns","commit_stats":null,"previous_names":["modelcontextprotocol/dns"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/modelcontextprotocol/dns","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modelcontextprotocol%2Fdns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modelcontextprotocol%2Fdns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modelcontextprotocol%2Fdns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modelcontextprotocol%2Fdns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/modelcontextprotocol","download_url":"https://codeload.github.com/modelcontextprotocol/dns/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/modelcontextprotocol%2Fdns/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29110530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T03:44:17.043Z","status":"ssl_error","status_checked_at":"2026-02-05T03:44:12.077Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-05T04:00:29.428Z","updated_at":"2026-02-05T04:01:09.422Z","avatar_url":"https://github.com/modelcontextprotocol.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MCP DNS Management\n\nInfrastructure as Code for managing MCP Cloudflare DNS records using Pulumi.\n\nDNS records are defined in [`src/config/records.ts`](src/config/records.ts), keyed by domain name.\n\n## Deployment\n\n### Production Deployment (Automated)\n\n**Note:** Production deployment is automatically handled by GitHub Actions. All merges to the `main` branch trigger an automatic deployment via [the configured GitHub Actions workflow](.github/workflows/deploy.yml).\n\n### Manual Deployment\n\nPre-requisites:\n\n- [Pulumi CLI installed](https://www.pulumi.com/docs/iac/download-install/)\n- [Google Cloud SDK installed](https://cloud.google.com/sdk/docs/install)\n- Access to GCP project and GCS bucket\n- Required credentials and secrets\n\n1. Authenticate with GCP: `gcloud auth application-default login`\n2. Get the passphrase file `passphrase.prod.txt` from the maintainers\n3. Preview changes: `make preview`\n4. Deploy changes: `make up`\n\n## Initial Setup\n\nIf setting up this infrastructure for the first time:\n\n### 1. Create GCS Bucket for Pulumi State\n\n```bash\ngcloud projects create mcp-dns-prod\ngcloud config set project mcp-dns-prod\ngcloud services enable storage.googleapis.com\n\n# Create service account for CI/CD\ngcloud iam service-accounts create pulumi-svc \\\n  --display-name=\"Pulumi Service Account\"\n\ngcloud projects add-iam-policy-binding mcp-dns-prod \\\n  --member=\"serviceAccount:pulumi-svc@mcp-dns-prod.iam.gserviceaccount.com\" \\\n  --role=\"roles/storage.admin\"\n\ngcloud iam service-accounts keys create sa-key.json \\\n  --iam-account=pulumi-svc@mcp-dns-prod.iam.gserviceaccount.com\n\n# Create bucket\ngsutil mb gs://mcp-dns-prod-pulumi-state\n```\n\n### 2. Create Cloudflare API Token\n\n1. Go to [Cloudflare API Tokens](https://dash.cloudflare.com/profile/api-tokens)\n2. Create a token with **Zone:DNS:Edit** permission for the zones you want to manage\n3. Note the token value\n\n### 3. Initialize Pulumi Stack\n\n```bash\n# Login to Pulumi backend\npulumi login gs://mcp-dns-prod-pulumi-state\n\n# Create production stack\nexport PULUMI_CONFIG_PASSPHRASE_FILE=passphrase.prod.txt\npulumi stack init prod\n\n# Configure application secrets in Pulumi\npulumi config set --secret cloudflare:apiToken \"your-api-token\"\npulumi config set cloudflare:accountId \"your-account-id\"\n```\n\nYou can find your Cloudflare Account ID in the Cloudflare dashboard URL or in the right sidebar of any zone's overview page.\n\n### 4. Configure GitHub Actions Secrets\n\nAdd the CI/CD secrets to GitHub Actions (repository settings → Secrets and variables → Actions):\n\n- `GCP_PROD_SERVICE_ACCOUNT_KEY`: Content of `sa-key.json`\n- `PULUMI_PROD_PASSPHRASE`: The passphrase you set above\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmodelcontextprotocol%2Fdns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmodelcontextprotocol%2Fdns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmodelcontextprotocol%2Fdns/lists"}