This skill should be used when the user asks about "Azure AI Search", "Cognitive Search", "AI Foundry", "Azure OpenAI", "speech to text", "text to speech", "Azure AI", "vector search", "semantic search", or mentions Azure AI and cognitive services. Provides best practices and MCP tool guidance for Azure AI services.
/plugin marketplace add charris-msft/azure-plugin/plugin install charris-msft-azure-mcp@charris-msft/azure-pluginThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Azure provides a comprehensive suite of AI services for search, language, speech, and machine learning. This skill covers Azure AI Search, Azure AI Services (Speech), and Microsoft Foundry.
MCP Tools Available: When the Azure MCP server is enabled, use these tools:
azure_search_index_list - List search indexesazure_search_index_get - Get index detailsazure_search_query - Query search indexazure_speech_transcribe - Transcribe audioazure_speech_synthesize - Text to speechazure_foundry_model_list - List AI modelsazure_foundry_deployment_list - List deploymentsazure_foundry_agent_list - List AI agentsIf Azure MCP is not enabled: Prompt the user to enable it via /mcp or run /azure:setup.
Azure AI Search (formerly Cognitive Search) provides:
| Tier | Use Case | Replicas | Indexes |
|---|---|---|---|
| Free | Dev/test | 1 | 3 |
| Basic | Small production | 3 | 15 |
| Standard | Production | 12 | 50-200 |
| Storage Optimized | Large data | 12 | 200 |
Field types:
Edm.String - Text fieldsCollection(Edm.Single) - Vector embeddingsEdm.Int32/Int64 - NumericEdm.DateTimeOffset - DatesEdm.Boolean - BooleanEdm.GeographyPoint - GeospatialField attributes:
searchable - Full-text searchfilterable - Filter expressionssortable - Sort resultsfacetable - Faceted navigationretrievable - Return in resultsEmbedding dimensions: Match your model output
Vector search algorithms:
Configuration:
{
"vectorSearch": {
"algorithms": [{
"name": "hnsw-config",
"kind": "hnsw",
"hnswParameters": {
"m": 4,
"efConstruction": 400,
"efSearch": 500,
"metric": "cosine"
}
}],
"profiles": [{
"name": "vector-profile",
"algorithm": "hnsw-config"
}]
}
}
Combine keyword and vector search:
Best for:
Built-in skills:
Custom skills:
Capabilities:
Supported formats:
Best practices:
Voices:
SSML support:
<speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis">
<voice name="en-US-JennyNeural">
<prosody rate="+10%" pitch="+5%">
Hello, how can I help you today?
</prosody>
</voice>
</speak>
Best practices:
Microsoft Foundry (AI Foundry) provides:
Available models:
Deployment options:
Agent capabilities:
Best practices:
Components:
Best practices:
1. List indexes with azure_search_index_list
2. Get index schema with azure_search_index_get
3. Query index with azure_search_query
4. Use vector and hybrid search modes
1. Transcribe audio with azure_speech_transcribe
2. Convert text to speech with azure_speech_synthesize
3. Specify language and voice options
1. List models with azure_foundry_model_list
2. List deployments with azure_foundry_deployment_list
3. List agents with azure_foundry_agent_list
4. Manage model configurations
| Operation | MCP Tool | Description |
|---|---|---|
| List search indexes | azure_search_index_list | Get all indexes |
| Get index | azure_search_index_get | Get index details |
| Query search | azure_search_query | Search index |
| Transcribe audio | azure_speech_transcribe | Speech to text |
| Synthesize speech | azure_speech_synthesize | Text to speech |
| List models | azure_foundry_model_list | Get AI models |
| List deployments | azure_foundry_deployment_list | Get deployments |
| List agents | azure_foundry_agent_list | Get AI agents |
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.