azure-mcp-server
A Model Context Protocol (MCP) server that provides tools, prompts, and resources to interact with and manage Azure resources
Overview
The azure-mcp-server is a Model Context Protocol (MCP) server designed to provide tools, prompts, and resources for interacting with and managing Azure resources.
To use the azure-mcp-server, you can clone the repository from GitHub, set up the server environment, and utilize the provided tools and prompts to manage your Azure resources effectively.
- Provides a structured way to interact with Azure resources using the Model Context Protocol. - Includes various tools and prompts to simplify Azure resource management. - Supports integration with artificial intelligence for enhanced resource management.
- Managing Azure resources efficiently through a unified protocol.
- Automating tasks related to Azure resource management.
- Enhancing AI-driven applications that require Azure resource interaction.
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-rchaganti": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-mcp-server-rchaganti"
]
}
}
}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-rchaganti": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-mcp-server-rchaganti"
]
}
}
}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-rchaganti": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-mcp-server-rchaganti"
]
}
}
}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-rchaganti": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-mcp-server-rchaganti"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"azure-mcp-server-rchaganti": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-mcp-server-rchaganti"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"azure-mcp-server-rchaganti": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure-mcp-server-rchaganti"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
The Model Context Protocol (MCP) is a framework that standardizes interactions with various resources, making it easier to manage and utilize them.
Is azure-mcp-server free to use?
Yes! The azure-mcp-server is open-source and available under the MIT license.
What programming language is used in azure-mcp-server?
The server is developed in Python.