npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

logic-app-mcp

v1.0.1

Published

MCP server for Azure Logic App Standard workflow run inspection

Readme

logic-app-mcp

MCP server for inspecting Azure Logic App Standard workflow runs. Gives AI agents direct access to the Logic App execution API to query runs, inspect actions, and retrieve input/output payloads.

Setup

Add to your .mcp.json:

{
  "mcpServers": {
    "logic-app-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["logic-app-mcp"],
      "env": {
        "AZURE_SUBSCRIPTION_ID": "your-subscription-id",
        "AZURE_RESOURCE_GROUP": "your-resource-group",
        "LOGIC_APP_NAME": "your-logic-app-name"
      }
    }
  }
}

Prerequisites

  • Node.js 18+
  • Azure CLI logged in (az login) — the server uses DefaultAzureCredential to authenticate
  • Read access to the target Logic App resource

Tools

| Tool | Description | |------|-------------| | list_workflows | List all workflows in the Logic App | | list_runs | List recent runs for a workflow, with optional status filter | | get_run | Get details of a specific run | | list_run_actions | List all actions in a run, with optional status filter | | get_action | Get details of a specific action including retry history | | get_action_inputs_outputs | Fetch the actual input/output payloads for an action | | list_action_repetitions | List repetitions for looped actions (For_each, Until) | | resubmit_run | Resubmit a failed run from its trigger |

Example usage

A typical debugging flow:

  1. list_workflows — see what's deployed
  2. list_runs with status=Failed — find failed runs
  3. list_run_actions on a failed run — see which actions failed
  4. get_action_inputs_outputs on the failed action — see the actual error payload

Configuration

| Environment Variable | Required | Description | |---------------------|----------|-------------| | AZURE_SUBSCRIPTION_ID | Yes | Azure subscription ID | | AZURE_RESOURCE_GROUP | Yes | Resource group containing the Logic App | | LOGIC_APP_NAME | Yes | Name of the Logic App Standard resource |

License

MIT