A
Azure
Query Azure resources, subscriptions and metrics via CLI.
·No reviews yet
Share:
About
Auto-generated
Azure is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Azure.
- What does the Azure MCP enable me to do?
- This MCP allows you to query Azure resources, subscriptions, and metrics directly through a command-line interface. It simplifies interaction with your Azure environment for development and operational tasks.
- How can I install the Azure MCP in a client?
- Installation typically involves adding the 'azure' slug to your MCP client's configuration file. The specific steps for Cline or other clients can be found in their respective documentation.
- Does the Azure MCP require authentication?
- Yes, this MCP uses an API key for authentication. You will need to provide a valid Azure API key to access your resources.
- Are there any costs associated with using the Azure MCP?
- The Azure MCP itself is provided by the community. However, usage costs will depend on the underlying Azure resources and services you access through the MCP, as per your Azure subscription.
- What is a key capability exposed by the Azure MCP?
- A key capability is the ability to query Azure resources. This allows users to retrieve information about their deployed services, virtual machines, and other Azure assets programmatically.
- What is an important prerequisite for using the Azure MCP?
- You must have an active Azure subscription and appropriate permissions to the resources you intend to manage. Additionally, familiarity with the Azure CLI commands will be beneficial for effective use.
Install Azure
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"azure": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"azure": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"azure": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-azure"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.