azure-updates-mcp

azure-updates-mcp

Enables AI assistants to search and filter Azure platform updates, including previews, general availability, and retirements, through natural language queries.

Category
Visit Server

README

Disclaimer: This is an independent, self-built project and is not an official Microsoft tool or service.

Azure Updates MCP Server

mcp-name: io.github.jonnybottles/azure-updates

Stay up-to-date with Azure platform changes through AI-powered natural language queries. This Python-based MCP (Model Context Protocol) server connects AI assistants like Claude to Azure Updates, enabling you to search and filter Azure service announcements, feature releases, preview launches, and retirement notices—all through conversational queries.

What It Does

Azure Updates MCP Server bridges the gap between Azure's official updates feed and your AI assistant, allowing you to:

  • Search updates by keyword - Ask about specific services, technologies, or features (e.g., "What's new with Azure Kubernetes Service?")
  • Filter by status - Find what's in Preview, Generally Available, or being Retired
  • Track deprecations - Stay ahead of service retirements and breaking changes
  • Discover categories - Explore available Azure products and services through faceted search
  • Query by date range - Find updates within specific timeframes
  • Look up by GUID - Retrieve specific announcements directly

Perfect for developers, cloud architects, and IT professionals who need to monitor Azure platform evolution, plan migrations, or stay informed about new capabilities—without manually checking the Azure updates website.

Requirements

General

  • Python 3.9+
  • An MCP-compatible client (Claude Desktop, Cursor, Claude Code, GitHub Copilot CLI, etc.)

Using uvx (Recommended)

If you are installing or running the server via uvx, you must have uv installed first.

  • uv (includes uvx): https://github.com/astral-sh/uv

Install uv:

# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Windows (PowerShell)
irm https://astral.sh/uv/install.ps1 | iex

Verify installation:

uv --version
uvx --version

uvx allows you to run the MCP server without installing the package globally.

Using pip (Alternative)

If you prefer not to use uvx, you can install the package directly with pip.

pip install azure-updates-mcp

In this case, uv / uvx is not required.

Installation

Install from PyPI

uvx azure-updates-mcp

Or install with pip:

pip install azure-updates-mcp

Upgrade to Latest Version

uvx azure-updates-mcp@latest

Or with pip:

pip install --upgrade azure-updates-mcp

Quick Setup

Set up in VS Code Set up in Cursor Set up in Claude Code Set up in Copilot CLI

One-click setup: Click the VS Code badge for automatic configuration (requires uv installed) Manual setup: See instructions below for Cursor, Claude Code, Copilot CLI, or Claude Desktop

Features

  • azure_updates_search – Search and filter Azure updates by keyword, category, status, date range, or GUID. Set include_facets=True to get taxonomy counts (product categories, products, tags, statuses). Use limit=0 with include_facets=True to discover available filter values.

Prompt Examples

Once connected to an MCP client, you can ask questions like:

  1. Get recent updates: "Show me the 10 most recent Azure updates"
  2. Search by keyword: "Find all Azure updates related to Kubernetes or AKS"
  3. Filter by status: "What Azure features are currently in preview?"
  4. Check for retirements: "Are there any upcoming Azure service retirements I should know about?"
  5. Discover categories: "What Azure product categories and services are available in the updates?"

Usage

Run the MCP Server

uvx azure-updates-mcp

Or if installed with pip:

azure-updates-mcp

Connect from Claude Desktop

Add to your Claude Desktop MCP config:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Using uvx (recommended)

{
  "mcpServers": {
    "azure-updates": {
      "command": "uvx",
      "args": ["azure-updates-mcp"]
    }
  }
}

Using installed package

{
  "mcpServers": {
    "azure-updates": {
      "command": "azure-updates-mcp"
    }
  }
}

Connect from Cursor

Option 1: One-Click Install (Recommended)

cursor://anysphere.cursor-deeplink/mcp/install?name=azure-updates-mcp&config=eyJjb21tYW5kIjogInV2eCIsICJhcmdzIjogWyJhenVyZS11cGRhdGVzLW1jcCJdfQ==

Option 2: Manual Configuration

Add to your Cursor MCP config:

  • macOS: ~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
  • Windows: %APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json

Connect from Claude Code

claude mcp add --transport stdio azure-updates -- uvx azure-updates-mcp

Connect from GitHub Copilot CLI

Add to ~/.copilot/mcp-config.json:

{
  "mcpServers": {
    "azure-updates": {
      "type": "stdio",
      "command": "uvx",
      "args": ["azure-updates-mcp"]
    }
  }
}

Development

pytest
ruff check src/ tests/

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured