v1.4.0: Major Skills Expansion - 75 Total Skills
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "azure-tools",
|
||||
"version": "2.0.2",
|
||||
"description": "Azure MCP Server integration for 40+ Azure services with Azure CLI authentication.",
|
||||
"author": {
|
||||
"name": "Fatih Akyon"
|
||||
},
|
||||
"homepage": "https://github.com/fcakyon/claude-codex-settings#plugins",
|
||||
"repository": "https://github.com/fcakyon/claude-codex-settings",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"azure": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "@azure/mcp@latest", "server", "start"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
---
|
||||
description: Configure Azure MCP server with Azure CLI authentication
|
||||
---
|
||||
|
||||
# Azure Tools Setup
|
||||
|
||||
Configure the Azure MCP server with Azure CLI authentication.
|
||||
|
||||
## Step 1: Check Prerequisites
|
||||
|
||||
Check if Azure CLI is installed:
|
||||
|
||||
```bash
|
||||
az --version
|
||||
```
|
||||
|
||||
Check if Node.js is installed:
|
||||
|
||||
```bash
|
||||
node --version
|
||||
```
|
||||
|
||||
Report status based on results.
|
||||
|
||||
## Step 2: Show Installation Guide
|
||||
|
||||
If Azure CLI is missing, tell the user:
|
||||
|
||||
```
|
||||
Azure CLI is required for Azure MCP authentication.
|
||||
|
||||
Install Azure CLI:
|
||||
- macOS: brew install azure-cli
|
||||
- Linux: curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
|
||||
- Windows: winget install Microsoft.AzureCLI
|
||||
|
||||
After installing, restart your terminal and run this setup again.
|
||||
```
|
||||
|
||||
If Node.js is missing, tell the user:
|
||||
|
||||
```
|
||||
Node.js 20 LTS or later is required for Azure MCP.
|
||||
|
||||
Install Node.js:
|
||||
- macOS: brew install node@20
|
||||
- Linux: curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - && sudo apt-get install -y nodejs
|
||||
- Windows: winget install OpenJS.NodeJS.LTS
|
||||
|
||||
After installing, restart your terminal and run this setup again.
|
||||
```
|
||||
|
||||
## Step 3: Check Authentication
|
||||
|
||||
If prerequisites are installed, check Azure login status:
|
||||
|
||||
```bash
|
||||
az account show
|
||||
```
|
||||
|
||||
If not logged in, tell the user:
|
||||
|
||||
```
|
||||
You need to authenticate to Azure.
|
||||
|
||||
Run: az login
|
||||
|
||||
This opens a browser for authentication. After signing in, you can close the browser.
|
||||
```
|
||||
|
||||
## Step 4: Verify Configuration
|
||||
|
||||
After authentication, verify:
|
||||
|
||||
1. Read `${CLAUDE_PLUGIN_ROOT}/.mcp.json` to confirm Azure MCP is configured
|
||||
2. Tell the user the current configuration
|
||||
|
||||
## Step 5: Confirm Success
|
||||
|
||||
Tell the user:
|
||||
|
||||
```
|
||||
Azure MCP is configured!
|
||||
|
||||
IMPORTANT: Restart Claude Code for changes to take effect.
|
||||
- Exit Claude Code
|
||||
- Run `claude` again
|
||||
|
||||
To verify after restart, run /mcp and check that 'azure' server is connected.
|
||||
|
||||
Reference: https://github.com/microsoft/mcp/tree/main/servers/Azure.Mcp.Server
|
||||
```
|
||||
@@ -0,0 +1,57 @@
|
||||
---
|
||||
name: azure-usage
|
||||
description: This skill should be used when user asks to "query Azure resources", "list storage accounts", "manage Key Vault secrets", "work with Cosmos DB", "check AKS clusters", "use Azure MCP", or interact with any Azure service.
|
||||
---
|
||||
|
||||
# Azure MCP Best Practices
|
||||
|
||||
## Tool Selection
|
||||
|
||||
| Task | Tool | Example |
|
||||
| -------------------- | ---------------------- | ----------------------------------- |
|
||||
| List resources | `mcp__azure__*_list` | Storage accounts, Key Vault secrets |
|
||||
| Get resource details | `mcp__azure__*_get` | Container details, database info |
|
||||
| Create resources | `mcp__azure__*_create` | New secrets, storage containers |
|
||||
| Query data | `mcp__azure__*_query` | Log Analytics, Cosmos DB |
|
||||
|
||||
## Common Operations
|
||||
|
||||
### Storage
|
||||
|
||||
- `storage_accounts_list` - List storage accounts
|
||||
- `storage_blobs_list` - List blobs in container
|
||||
- `storage_blobs_upload` - Upload file to blob
|
||||
|
||||
### Key Vault
|
||||
|
||||
- `keyvault_secrets_list` - List secrets
|
||||
- `keyvault_secrets_get` - Get secret value
|
||||
- `keyvault_secrets_set` - Create/update secret
|
||||
|
||||
### Cosmos DB
|
||||
|
||||
- `cosmosdb_databases_list` - List databases
|
||||
- `cosmosdb_containers_list` - List containers
|
||||
- `cosmosdb_query` - Query documents
|
||||
|
||||
### AKS
|
||||
|
||||
- `aks_clusters_list` - List AKS clusters
|
||||
- `aks_nodepools_list` - List node pools
|
||||
|
||||
### Monitor
|
||||
|
||||
- `monitor_logs_query` - Query Log Analytics
|
||||
|
||||
## Authentication
|
||||
|
||||
Azure MCP uses Azure Identity SDK. Authenticate via:
|
||||
|
||||
- `az login` (Azure CLI - recommended)
|
||||
- VS Code Azure extension
|
||||
- Environment variables (service principal)
|
||||
|
||||
## Reference
|
||||
|
||||
- [Azure MCP Server](https://github.com/microsoft/mcp/tree/main/servers/Azure.Mcp.Server)
|
||||
- [Supported Services (40+)](https://learn.microsoft.com/azure/developer/azure-mcp-server/)
|
||||
@@ -0,0 +1,19 @@
|
||||
---
|
||||
name: setup
|
||||
description: This skill should be used when user encounters "Azure MCP error", "Azure authentication failed", "az login required", "Azure CLI not found", or needs help configuring Azure MCP integration.
|
||||
---
|
||||
|
||||
# Azure Tools Setup
|
||||
|
||||
Run `/azure-tools:setup` to configure Azure MCP.
|
||||
|
||||
## Quick Fixes
|
||||
|
||||
- **Authentication failed** - Run `az login` to authenticate
|
||||
- **Azure CLI not found** - Install Azure CLI first
|
||||
- **Permission denied** - Check Azure RBAC roles for your account
|
||||
- **Node.js not found** - Install Node.js 20 LTS or later
|
||||
|
||||
## Don't Need Azure MCP?
|
||||
|
||||
Disable via `/mcp` command to prevent errors.
|
||||
Reference in New Issue
Block a user