drio
Open app

Azure MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

Azure MCP Server is an implementation of a Model Context Protocol server designed for seamless interaction with Azure services, specifically Azure Blob Storage and Azure Cosmos DB (NoSQL API).

To use Azure MCP Server, you can either install it automatically via Smithery or manually by cloning the repository and configuring your Azure credentials. After setup, you can perform various operations through the server.

  • Supports operations for Azure Blob Storage and Azure Cosmos DB. - Automatic logging of all operations via the audit resource endpoint. - Easy installation and configuration for local use with the Claude Desktop App.
  1. Managing Blob Storage containers and files.
  2. Interacting with Cosmos DB for data storage and retrieval.
  3. Integrating Azure services into applications using the Model Context Protocol.

Add to your AI client

Use these steps to connect Azure MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "azure-mcp-server-mashriram": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-server-mashriram"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "azure-mcp-server-mashriram": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-server-mashriram"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "azure-mcp-server-mashriram": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-server-mashriram"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "azure-mcp-server-mashriram": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-server-mashriram"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "azure-mcp-server-mashriram": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-server-mashriram"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "azure-mcp-server-mashriram": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-server-mashriram"
      ]
    }
  }
}

FAQ

What services does Azure MCP Server support?

Currently, it supports Azure Blob Storage and Azure Cosmos DB.

How do I authenticate with Azure?

You can authenticate using environment variables or the Azure CLI.

Is there a logging feature?

Yes, all operations are logged and can be accessed via the audit resource endpoint.