1. Conduid
  2. Developer Tools
  3. Hybrid Dns Architect
MCP server · Developer Tools

Hybrid Dns Architect

hybrid-dns-architect

Unclaimed last commit 6 months ago devtools
48Fair

Scored 4 months ago · breakdown

About Hybrid Dns Architect

Hybrid Dns Architect is an MCP server published by munieswar in the Developer Tools category: hybrid-dns-architect. It has been installed 0 times through Conduid.

The repository has 2 stars and 0 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx hybrid-dns-architect

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Hybrid Dns Architect

Powered by Claude · Grounded in docs

I know everything about Hybrid Dns Architect. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

🏗️ Hybrid DNS Architect

An interactive Azure DNS Private Resolver visualizer, configuration generator, and MCP server for GitHub Copilot.

Built for the Agents League TechConnect Hackathon — Creative Apps Track (Battle #1)

Architecture Visualizer MCP GitHub Copilot


🎯 What It Does

Hybrid DNS Architect helps network engineers and cloud architects visualize, understand, and deploy Azure DNS Private Resolver configurations for hybrid DNS environments. It tackles the complexity of setting up bidirectional DNS resolution between Azure and on-premises networks.

Features

Feature Description
🏗️ Architecture Visualizer Interactive animated SVG diagram showing Azure and on-premises DNS components, with live data flow visualization
🔍 DNS Path Tracer Step-by-step animated walkthrough of DNS resolution paths (Azure→On-Prem and On-Prem→Azure)
⚙️ Config Generator Generates ready-to-deploy scripts in Bicep, PowerShell, Azure CLI, and On-Prem DNS formats
🤖 MCP Server 5 tools exposed to GitHub Copilot for generating configs, explaining DNS paths, and troubleshooting

MCP Tools for GitHub Copilot

The MCP server exposes these tools directly in Copilot Chat:

Tool Description
generate_hybrid_dns_config Generate Bicep/PowerShell/CLI deployment scripts
generate_onprem_dns_config Generate on-premises DNS conditional forwarder configs
explain_dns_resolution_path Explain step-by-step DNS resolution for any query
troubleshoot_hybrid_dns Get troubleshooting guides for common issues
get_hybrid_dns_info Retrieve knowledge about hybrid DNS concepts

🚀 Quick Start

Prerequisites

Install & Run the Web App

cd hybrid
npm install
npm run dev

Open http://localhost:3000 to see the interactive visualizer.

Setup the MCP Server for GitHub Copilot

  1. Install MCP server dependencies:

    cd mcp-server
    npm install
    
  2. The MCP configuration is already set up in .vscode/mcp.json. VS Code will detect it automatically.

  3. Open Copilot Chat and try:

    • "Generate a Bicep template for hybrid DNS with my domain corp.example.com"
    • "Explain the DNS resolution path when an Azure VM queries an on-prem domain"
    • "How do I troubleshoot when on-prem can't resolve Azure private zones?"
    • "Generate PowerShell to set up conditional forwarders on my Windows DNS server"

📐 Architecture

Based on the official Azure DNS Private Resolver for hybrid DNS documentation:

┌─────────────────────────────┐       VPN/ER        ┌─────────────────────────────┐
│       Azure Cloud           │◄────────────────────►│      On-Premises            │
│                             │                      │                             │
│  ┌───────────────────────┐  │                      │  ┌───────────────────────┐  │
│  │ DNS Private Resolver  │  │                      │  │ Windows DNS Server    │  │
│  │ ├─ Inbound Endpoint   │  │                      │  │ + Conditional         │  │
│  │ └─ Outbound Endpoint  │  │                      │  │   Forwarders          │  │
│  └───────────────────────┘  │                      │  └───────────────────────┘  │
│  ┌───────────────────────┐  │                      │  ┌───────────────────────┐  │
│  │ Forwarding Ruleset    │  │                      │  │ AD / DNS Zones        │  │
│  └───────────────────────┘  │                      │  └───────────────────────┘  │
│  ┌───────────────────────┐  │                      │                             │
│  │ Private DNS Zone      │  │                      │                             │
│  └───────────────────────┘  │                      │                             │
└─────────────────────────────┘                      └─────────────────────────────┘

DNS Resolution Flows

Azure → On-Premises: Azure VM → Azure DNS (168.63.129.16) → Outbound Endpoint → Forwarding Rule → VPN/ER → On-Prem DNS

On-Premises → Azure: Client → On-Prem DNS → Conditional Forwarder → VPN/ER → Inbound Endpoint → Private DNS Zone


🛠️ Tech Stack

  • Frontend: React 18 + Vite + Tailwind CSS
  • Visualizations: SVG with CSS animations
  • MCP Server: Node.js + @modelcontextprotocol/sdk
  • Config Generation: Bicep, PowerShell, Azure CLI, Windows DNS

📂 Project Structure

hybrid/
├── src/                         # React web application
│   ├── App.jsx                  # Main app with tabs & config state
│   ├── components/
│   │   ├── ArchitectureVisualizer.jsx  # Animated SVG architecture diagram
│   │   ├── DnsPathTracer.jsx           # Step-by-step DNS path animation
│   │   ├── ConfigGenerator.jsx         # Multi-format config generator
│   │   ├── ConfigForm.jsx              # Configuration input panel
│   │   └── Header.jsx                  # App header
│   ├── main.jsx
│   └── index.css
├── mcp-server/                  # MCP Server for GitHub Copilot
│   ├── index.js                 # Server with 5 tools + knowledge base
│   └── package.json
├── .vscode/
│   └── mcp.json                 # VS Code MCP integration config
├── package.json
├── vite.config.js
├── tailwind.config.js
└── README.md

🤖 GitHub Copilot Usage

This project was built entirely with GitHub Copilot assistance:

  • Architecture design: Copilot helped design the component structure and data flow
  • SVG visualization: Copilot generated the animated architecture diagram with proper positioning
  • Config generators: Copilot produced Bicep, PowerShell, and Azure CLI scripts following Azure best practices
  • MCP server: Copilot structured the MCP tools with proper Zod schemas and response formats
  • Troubleshooting knowledge base: Copilot compiled comprehensive troubleshooting guides from Azure documentation

📚 References


📜 License

MIT — See LICENSE for details.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Hybrid Dns Architect

How do I install Hybrid Dns Architect?

Run npx hybrid-dns-architect, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Hybrid Dns Architect safe to use with an AI agent?

Its trust score is 48 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Hybrid Dns Architect still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.