- Home
- MCP servers
- Azure Logic Apps
Azure Logic Apps
- javascript
1
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"laveeshb-logicapps-mcp": {
"command": "logicapps-mcp",
"args": []
}
}
}You can manage and debug Azure Logic Apps with an AI-powered MCP server that lets you inspect failed runs, explain workflows, and make changes through natural language—no portal clicking required.
How to use
You use an MCP client to connect to the Azure Logic Apps MCP Server and start chatting with your AI assistant. You can ask it to list workflows, show failed runs, explain what happened in a run, or apply changes to a workflow. As you converse, the assistant traces through runs, actions, loops, and scopes to help you understand failures and implement fixes.
How to install
Prerequisites: you need Node.js and a working Azure account. You should also have an MCP-capable client (for example, GitHub Copilot, Claude Desktop, or another MCP-compatible assistant).
Step 1: Install the MCP package globally.
npm install -g logicapps-mcp
Step 2: Log in to Azure from your terminal.
az login
Step 3: Configure your AI assistant to connect with the MCP server in your development environment. For example, in VS Code, add the MCP configuration snippet to your workspace to enable Copilot integration.
{
"servers": {
"logicapps": {
"type": "stdio",
"command": "logicapps-mcp"
}
}
}
Additional setup and notes
If you want a hosted MCP server, you can use a cloud deployment aligned with your Azure setup. The local workflow above is designed for quick experimentation and debugging from your development environment.
Configuration and usage notes
The server supports interacting with both Consumption and Standard Logic Apps. You can explore tools, run diagnostics, create or update workflows, and manage triggers and runs through natural language prompts.
Examples of typical prompts
- List my Logic Apps in subscription xyz
- Show failed runs from the last 24 hours
- What went wrong in run ID abc123?
- Add retry logic to the HTTP action
- Disable the order-processing workflow