drio
Open app

Azure Mcp Servers

Source

This directory showcases various Model Context Protocol (MCP) servers. These servers enable Large Language Models (LLMs) to securely access tools and data sources from Microsoft Azure.

Catalog onlyCatalog onlySTDIO

Overview

Azure MCP Servers is a directory that showcases various Model Context Protocol (MCP) servers designed to enable Large Language Models (LLMs) to securely access tools and data sources from Microsoft Azure.

To use Azure MCP Servers, developers can explore the directory to find suitable MCP servers that can be integrated with their LLM applications, allowing for secure data access and tool utilization.

  • A comprehensive directory of MCP servers for LLMs - Secure access to Microsoft Azure tools and data sources - Support for various AI applications and integrations
  1. Integrating LLMs with Azure services for enhanced functionality.
  2. Developing AI applications that require secure data access.
  3. Utilizing MCP servers for research and development in AI.

Add to your AI client

Use these steps to connect Azure Mcp Servers 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-servers-manekinekko": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-servers-manekinekko"
      ]
    }
  }
}

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-servers-manekinekko": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-servers-manekinekko"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

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-servers-manekinekko": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-azure-mcp-servers-manekinekko"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of MCP servers?

MCP servers facilitate secure communication between LLMs and various data sources and tools in Azure.

Are the MCP servers free to use?

The usage of MCP servers may depend on the specific Azure services and their pricing models.

How can I contribute to the Azure MCP Servers project?

Contributions can be made by submitting pull requests on the GitHub repository.