Skip to main content

A tool for analyzing Mule integration projects to generate sequence diagrams or natural language descriptions of each flow

Project description

Mule Flow Analyzer

A library for analyzing Mule integration projects to generate sequence diagrams or natural language descriptions of each flow.

Before analysis, placeholders in code will attempt to be replaced using values from the property files in the project directory. If there are multiple properties files, you can supply a hierarchy to follow and any omitted properties will not be referenced. This can be helpful if multiple environment property files are in the project.

Depending on your output format, text files and/or diagrams will be generated with file names based on the flow name (with special characters replaced with underscores).

Output type Destination Purpose
SEQUENCE Files under plantuml or mermaid output directory Sequence diagrams
NATURAL Files under natural.output_directory Structured English flow descriptions (deterministic templates)
TEXT Console (stdout) Indented structural tree for debugging

Table of Contents

Example Outputs

Real examples generated by this project are copied under docs/examples/plantuml/.

Nested Flow Refs

analyzer-test-nested-flowrefs

Full UML source: docs/examples/plantuml/analyzer-test-nested-flowrefs.txt

box #LightBlue-6FBBD3
participant "http:basic-security-filter\n[Basic security filter]"
participant "ee:transform\n[Set Variable: myMainVar1]"
participant "ee:transform\n[Set Variable: mySubflowVar]"
participant "ee:transform\n[Set Variable: myMainVar2]"
participant "ee:transform\n[Set Variable: mySubflowVar2]"
participant "sftp:read\n[Read File for Payload]"
participant "set-payload\n[Set Payload]"
end box
participant "<size:30><&globe>\nHTTP" as HTTP
participant "<size:30><&file>\nLocalFileServer SFTP" as LocalFileServer
title analyzer-test-nested-flowrefs
 -> "http:basic-security-filter\n[Basic security filter]" :
"http:basic-security-filter\n[Basic security filter]" -> "HTTP" : HTTP Request (Basic security filter)
"HTTP" --> "http:basic-security-filter\n[Basic security filter]" :

Nested Flow Refs (create_mode: true)

analyzer-test-nested-flowrefs-create-mode-true

Full UML source: docs/examples/plantuml/analyzer-test-nested-flowrefs-create-mode-true.txt

box #LightBlue-6FBBD3
participant "http:basic-security-filter\n[Basic security filter]"
participant "ee:transform\n[Set Variable: myMainVar1]"
participant "ee:transform\n[Set Variable: mySubflowVar]"
participant "ee:transform\n[Set Variable: myMainVar2]"
participant "ee:transform\n[Set Variable: mySubflowVar2]"
participant "sftp:read\n[Read File for Payload]"
participant "set-payload\n[Set Payload]"
end box
participant "<size:30><&globe>\nHTTP" as HTTP
participant "<size:30><&file>\nLocalFileServer SFTP" as LocalFileServer
title analyzer-test-nested-flowrefs
 -> "http:basic-security-filter\n[Basic security filter]" ** :
"http:basic-security-filter\n[Basic security filter]" -> "HTTP" ** : HTTP Request (Basic security filter)
"HTTP" --> "http:basic-security-filter\n[Basic security filter]" :

Anypoint MQ Queues

anypoint-mq-queues

Full UML source: docs/examples/plantuml/anypoint-mq-queues.txt

queue "Queue\nmy-test-subscription"
box #LightBlue-6FBBD3
participant "anypoint-mq:subscriber\n[Subscriber]"
participant "anypoint-mq:consume\n[Consume]"
participant "anypoint-mq:publish\n[Publish]"
end box
queue "Queue\nmy-test-queue"
queue "Queue\nmy-destination"
'source event
"Queue\nmy-test-subscription" -> "anypoint-mq:subscriber\n[Subscriber]" : Message (my-test-subscription)
title anypoint-mq-queues
"anypoint-mq:subscriber\n[Subscriber]" -> "anypoint-mq:consume\n[Consume]" :
"anypoint-mq:consume\n[Consume]" -> "Queue\nmy-test-queue" : Message (my-test-queue)
"Queue\nmy-test-queue" --> "anypoint-mq:consume\n[Consume]" :
"anypoint-mq:consume\n[Consume]" -> "anypoint-mq:publish\n[Publish]" :

Async Operation

async-operation

Full UML source: docs/examples/plantuml/async-operation.txt

participant "<size:30><color:#00A1E0><&cloud>\nExperience Cloud" as Experience
box #LightBlue-6FBBD3
participant "salesforce:subscribe-channel-listener\n[Subscribe channel listener]"
participant "db:insert\n[Insert Subscription]"
participant "set-variable\n[customerId]"
participant "email:send\n[New Subscription Email]"
participant "db:update\n[Update Subscription Emails]"
participant "salesforce:delete\n[Delete Subscription]"
end box
database "Database\nA"
participant "<size:30><&envelope-closed>\nSMTP" as Email
participant "<size:30><color:#00A1E0><&cloud>\nExperience Cloud" as Experience_4
'source event
"Experience" -> "salesforce:subscribe-channel-listener\n[Subscribe channel listener]" : subscribe-channel-listener
title async-operation

Installation

Install from PyPI:

pip install mule-flow-analyzer

To install a specific version:

pip install mule-flow-analyzer==1.1.0

For development, clone the repository and install in editable mode with test dependencies:

pip install -e ".[dev]"

IDE agent skill (VS Code / GitHub Copilot)

This repo ships an Agent Skill for analyzing flows from inside a Mule workspace using Copilot or compatible agents.

Where it lives here: .cursor/skills/mule-flow-analyzer/ (SKILL.md plus scripts/run_analyzer.py).

Where to use it: Copy the whole mule-flow-analyzer folder into a skill discovery location used by your IDE/agent. This can be inside your Mule application repository (the project that contains src/main/mule/) or in a shared/global skills directory configured in your IDE. Do not rely on this library clone for analyzing your apps unless you open that app as the workspace. Examples:

  • .github/skills/mule-flow-analyzer/ (commonly used by GitHub Copilot in VS Code), or
  • .cursor/skills/mule-flow-analyzer/ in the target workspace, or
  • any shared/global folder configured for skill discovery (for example via chat.skillsLocations).

The name field in SKILL.md must match the parent directory name (mule-flow-analyzer). After copying, install the package in a venv (pip install mule-flow-analyzer) and run the helper from the Mule app root; see the script’s --help for flags.

Diagram Generation

Sequence diagram generation supports two syntax engines. PlantUML is the recommended output format for sequence diagrams.

  • plantuml (default): writes PlantUML source and can render PNG/SVG through a server, local JAR, or CLI.
  • mermaid (experimental): writes Mermaid .mmd source and can optionally render through Mermaid CLI.

Select the engine with analyzer_properties.diagram_engine. Existing configurations continue to use PlantUML by default.

PlantUML

PlantUML image generation supports three rendering approaches:

  • server: HTTP PlantUML server URL (local Docker-hosted or hosted service)
  • jar: local java -jar plantuml.jar execution (offline, no Docker)
  • cli: local plantuml command execution (offline)

If no mode is explicitly set, the library defaults to server mode for backward compatibility.

Running the PlantUML server locally with Docker

No Mule application source is required to be sent to a public server, only the generated UML. If you don't want to send the UML to a public server, you can run the PlantUML server locally.

Pull the PlantUML server image:

docker pull plantuml/plantuml-server

Run the PlantUML server. (In this example, the server will be available on port 8087)

docker run -d -p 8087:8080 plantuml/plantuml-server:jetty

Use server mode with http://localhost:8087/:

analyzer_properties:
  plantuml:
    mode: "server"
    server: "http://localhost:8087/"
    format: "png"
    output_directory: "./output/plantuml"

Running with local PlantUML JAR (no Docker, offline)

Requirements:

  • Java installed and on PATH
  • plantuml.jar downloaded locally (for example ./tools/plantuml.jar)

Use jar mode:

analyzer_properties:
  plantuml:
    mode: "jar"
    java_command: "java"
    jar_path: "./tools/plantuml.jar"
    format: "png"
    output_directory: "./output/plantuml"

Running with local PlantUML CLI (offline)

If plantuml is installed as a command:

analyzer_properties:
  plantuml:
    mode: "cli"
    cli_command: "plantuml"
    format: "png"
    output_directory: "./output/plantuml"

Quick validation commands

Check local server:

curl -I http://localhost:8087/

Check Java:

java -version

Check PlantUML CLI:

plantuml -version

Refer to Overriding Configuration for full configuration details.

Mermaid

Mermaid support is experimental. PlantUML is the recommended sequence diagram output because it has the most complete mapping for Mule flow constructs and formatting.

Mermaid output can still be useful when you want syntax that can be rendered by GitHub, GitLab, documentation tools, editor extensions, or Mermaid CLI.

By default, Mermaid mode writes source only:

analyzer_properties:
  diagram_engine: "mermaid"
  mermaid:
    mode: "file"
    output_directory: "./output/mermaid"
    source_extension: "mmd"

To render with Mermaid CLI, install @mermaid-js/mermaid-cli and use cli mode:

npm install -g @mermaid-js/mermaid-cli
mmdc --version
analyzer_properties:
  diagram_engine: "mermaid"
  mermaid:
    mode: "cli"
    cli_command: "mmdc"
    format: "svg"
    output_directory: "./output/mermaid"

Mermaid support intentionally degrades PlantUML-only features. Custom PlantUML actor icons, skinparam, scale settings, colored arrows, colored notes/groups, and the generated PlantUML legend do not have direct Mermaid equivalents.

Overriding Configuration

For detailed configuration options, see Configuration Documentation.

Instructions for LLMs

LLMs can be shown the python usage instructions to help them generate code.

Troubleshooting

If you encounter an error, check the log file for more information. The default path in configuration metadata is mfa-logs/mule_flow_analyzer.log (relative to the process working directory where Python is run). Override it under analyzer_properties.logging.file in your merged configuration or YAML.

If the log file is not found, check the default properties file for the correct path.

The log level can be set to DEBUG to get more information in the configuration file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mule_flow_analyzer-1.1.0.tar.gz (43.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mule_flow_analyzer-1.1.0-py3-none-any.whl (43.8 kB view details)

Uploaded Python 3

File details

Details for the file mule_flow_analyzer-1.1.0.tar.gz.

File metadata

  • Download URL: mule_flow_analyzer-1.1.0.tar.gz
  • Upload date:
  • Size: 43.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for mule_flow_analyzer-1.1.0.tar.gz
Algorithm Hash digest
SHA256 175d948d7056f5d872d5ca3f3cc5af71601eda431a0278b2e7dbe57ffd4f5daf
MD5 96bfa0d10458e53f3f7395f31ab16262
BLAKE2b-256 46a87b8ca38618d897f485a75013412b7792fdc8d47c53b9e34079273dae87a4

See more details on using hashes here.

File details

Details for the file mule_flow_analyzer-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mule_flow_analyzer-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 07d5546ac4c320f0cd71af7a0d51c051698dfedf75f31146315d3e6c2489ec69
MD5 4b177b1c64abc0827c337c769b2fc741
BLAKE2b-256 7359154cac604ecb0fee4af193057fc7e2709813882de1080d7bccb91b30eb80

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page