npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@dawnguard/mcp

v1.0.7

Published

Dawnguard MCP Server - Cloud security insights and guardrail guidance for Azure and AWS architectures

Downloads

920

Readme

Dawnguard MCP Server

npm version License: Source Available

Cloud security insights, guardrail guidance, and compliance checking for Azure and AWS architectures via Model Context Protocol (MCP).

Overview

Dawnguard MCP connects your AI assistant (Claude, ChatGPT, Cursor, VS Code) directly to your cloud security insights. Query security findings, retrieve company guardrails, design secure architectures, and get remediation guidance — all through natural language.

Features

  • Query Security Findings — Access 39+ security insights from architecture scans
  • Retrieve Guardrails — Get active company policies and compliance rules
  • Design Secure Architectures — Get architecture recommendations aligned to your guardrails
  • Remediation Guidance — Step-by-step CLI and portal instructions for fixes
  • Multi-Cloud Support — Azure and AWS resources
  • OAuth 2.0 Authentication — Secure token-based access
  • Real-Time Insights — Latest security findings from your scans

Installation

Via npm

npm install @dawnguard/mcp

Via npx (Recommended)

npx -y @dawnguard/mcp

Configuration

For Cursor IDE

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "dawnguard": {
      "url": "https://api.dev.dawnguard.app/mcp/${env:DAWNGUARD_CUSTOMER_ID}",
      "type": "http"
    }
  }
}

For Claude Desktop

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "dawnguard": {
      "command": "npx",
      "args": ["-y", "@dawnguard/mcp"],
      "env": {
        "DAWNGUARD_CUSTOMER_ID": "your-customer-id"
      }
    }
  }
}

For VS Code

Add to ~/.vscode/mcp.json:

{
  "servers": {
    "dawnguard-mcp": {
      "url": "https://api.dev.dawnguard.app/mcp/${env:DAWNGUARD_CUSTOMER_ID}",
      "type": "http"
    }
  }
}

Setup

1. Get Your Customer ID

  1. Log in to Dawnguard
  2. Go to profile and click preferences → Configure
  3. Copy your MCP URL including Customer ID

2. Set Environment Variable

export DAWNGUARD_CUSTOMER_ID="your-customer-id"

Add to ~/.zshrc or ~/.bashrc to persist:

echo 'export DAWNGUARD_CUSTOMER_ID="your-customer-id"' >> ~/.zshrc
source ~/.zshrc

Tools

validate

Verify MCP connection and authentication status.

Claude: "Is the Dawnguard connection working?"
→ Returns connection status and authenticated user info

list_architectures

List all stored cloud architecture snapshots with metadata.

Claude: "Show me all my cloud environments"
→ Returns list of scanned architectures with scan dates

query_insights

Query security findings from architecture scans with advanced filtering.

Claude: "Show me all critical security findings in my Azure subscription"
→ Returns filtered security insights with severity scores

guardrail_guidance

Retrieve active company guardrails, policies, and compliance frameworks.

Claude: "What are our active security guardrails?"
→ Returns your org's policies, naming conventions, tagging rules

design_architecture

Get policy-led secure architecture design guidance.

Claude: "Design a secure API architecture aligned to our guardrails"
→ Returns architecture diagram and best practices recommendations

Examples

Query Security Findings

You: "What are my top 5 open security findings?"

Claude uses query_insights to find:
1. Enable Purge Protection on Key Vault (severity: high)
2. Enable DDoS Protection on VNets (severity: high)
3. Enable Private Endpoints (severity: medium)
...

Design Secure Architecture

You: "Design a secure Azure API Service aligned to our guardrails"

Claude uses design_architecture to recommend:
- Private endpoints for all PaaS services
- VNet integration with NSGs
- Managed identity for authentication
- Application Insights monitoring

Get Remediation Guidance

You: "How do I fix the DDoS protection issue?"

Claude uses query_insights + guardrail_guidance to provide:
1. Create DDoS Protection plan: az network ddos-protection create ...
2. Enable on VNet: az network vnet update ...
3. Verify: az network vnet show ...

Troubleshooting

Authentication Failed

If you receive authentication errors, verify that your app registration redirect URI is configured correctly:

  1. Go to Dawnguard App Registrations
  2. Find your app and check the Redirect URIs section
  3. Ensure the callback URL matches your configured OAuth endpoint
  4. If missing, add the callback URL and save

Common redirect URI formats:

  • Local: http://localhost:3000/callback
  • Web: https://yourdomain.com/callback
  • Claude: http://localhost:8080/callback (Claude Desktop default)

License

Source Available License — Source code is publicly available but may not be modified or redistributed without permission. The Dawnguard backend services remain proprietary. See LICENSE for details.

This Software is designed for exclusive use with Dawnguard's proprietary backend services.

Contributing

Contributions welcome! See CONTRIBUTING.md for guidelines.

Changelog

See CHANGELOG.md for version history.


Made with ❤️ by Dawnguard