Skip to main content
azd extensions
Azure Developer CLI Extensions by Jon Gallant

Superpowers for azd

Extensions that give the Azure Developer CLI new abilities. azd app runs your whole app locally with one command. azd rest calls any Azure API without wrangling a token.

The Extensions

Built to solve real problems. Battle-tested with comprehensive security scanning, cross-platform support, and extensive documentation.

azd app

Run Azure Apps Locally

One command starts all your services with auto-dependencies, real-time dashboard, and AI-powered debugging via GitHub Copilot MCP integration.

  • One-Command Start

    All services, auto-dependencies

  • Real-time Dashboard

    Live status & health checks

  • Copilot MCP

    12 AI tools for debugging

  • Multi-Language

    Node, Python, .NET, Go, Java

Try It

  1. Start Everything

    azd app run
  2. Check Prerequisites

    azd app reqs
  3. View Service Logs

    azd app logs api
  4. Run Tests

    azd app test --coverage
  • developer
  • productivity
  • app
  • testing

azd rest

Authenticated REST API Calls

Make REST API calls to Azure services with automatic authentication and scope detection. No manual token management, just point at a URL and go.

  • Auto Auth

    Automatic scope detection & tokens

  • All HTTP Methods

    GET, POST, PUT, PATCH, DELETE

  • 20+ Services

    Management, Graph, Key Vault, more

  • Secure by Default

    HTTPS, credential chain, retries

Try It

  1. List Subscriptions

    azd rest get https://management.azure.com/subscriptions?api-version=2020-01-01
  2. Key Vault Secret

    azd rest get https://myvault.vault.azure.net/secrets/mysecret?api-version=7.4
  3. Microsoft Graph

    azd rest get https://graph.microsoft.com/v1.0/me
  • rest
  • api
  • http
  • developer-tools

Get Started in 30 Seconds

Install every extension with a single command

Install Azure Developer CLI

winget install microsoft.azd

Add Extension Registry

azd extension source add -n jongio -t url -l https://jongio.github.io/azd-extensions/registry.json

Install Extensions

Install all extensions at once, or pick and choose.

Install all

azd extension install jongio.azd.app jongio.azd.rest

Or install individually

azd extension install jongio.azd.app
azd extension install jongio.azd.rest