BPMN-MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
git clone https://github.com/dattmavis/BPMN-MCP.git
cd BPMN-MCP
npm install
npm run build
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add bpmn-mcp -- node "<FULL_PATH_TO_BPMN_MCP>/dist/index.js"

Replace <FULL_PATH_TO_BPMN_MCP>/dist/index.js with the actual folder you prepared in step 1.

README.md

Programmatically create, modify, and export BPMN 2.0 workflow diagrams.

BPMN-MCP

A Model Context Protocol (MCP) server for creating and manipulating BPMN 2.0 workflow diagrams programmatically. This server enables AI assistants and other tools to generate, edit, and export business process diagrams in the standard BPMN format.

BPMN Diagram Example

Features

  • Create BPMN Diagrams: Generate new workflow diagrams from scratch
  • Add Process Elements: Insert events, tasks, gateways, and subprocesses
  • Connect Elements: Create sequence flows between workflow components
  • Export Formats: Save diagrams as BPMN 2.0 XML or SVG
  • Import Support: Load and modify existing BPMN XML files
  • Smart Hints: Get helpful nudges to ensure complete workflows with proper connections

Installation

Prerequisites

  • Node.js (v16 or higher)
  • npm or yarn

Local Setup

  1. Clone the repository:
git clone https://github.com/dattmavis/BPMN-MCP.git
cd BPMN-MCP
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration

For Claude Desktop

Add the following to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "bpmn": {
      "command": "node",
      "args": ["/absolute/path/to/BPMN-MCP/dist/index.js"]
    }
  }
}

Replace /absolute/path/to/BPMN-MCP with the actual path where you cloned this repository.

For Other AI Tools

This MCP server works with any tool that supports the Model Context Protocol. Configure it to run:

node /path/to/BPMN-MCP/dist/index.js

Usage

Once configured, you can ask your AI assistant to create BPMN diagrams. Here are some example requests:

Full Output Example

Creating a Simple Workflow

Create a BPMN diagram for an order processing workflow with these steps:
1. Order Received (start event)
2. Validate Order (user task)
3. Process Payment (service task)
4. Order Complete (end event)

Connect them with sequence flows.

Query Example

Creating a Workflow with Decision Points

Create a BPMN diagram for customer support ticket routing:
- Start: Ticket Received
- Task: Categorize Ticket
- Gateway: Check Priority
  - If High: Escalate to Senior Support
  - If Normal: Assign to Support Team
- Both paths lead to: Ticket Resolved (end)

Available Tools

The MCP server provides these tools:

`create_bpmn_diagram`

Creates a new BPMN diagram and returns a diagram ID.

`add_bpmn_element`

Adds an element to the diagram. Supported types:

  • Events: bpmn:StartEvent, bpmn:EndEvent, bpmn:IntermediateCatchEvent, bpmn:IntermediateThrowEvent
  • Tasks: bpmn:Task, bpmn:UserTask, bpmn:ServiceTask, bpmn:ScriptTask, bpmn:ManualTask, bpmn:BusinessRuleTask, bpmn:SendTask, bpmn:ReceiveTask
  • Gateways: bpmn:ExclusiveGateway, bpmn:ParallelGateway, bpmn:InclusiveGateway, bpmn:EventBasedGateway
  • Other: bpmn:SubProcess

`connect_bpmn_elements`

Creates a sequence flow between two elements.

`export_bpmn_xml`

Exports the diagram as BPMN 2.0 XML format.

`export_bpmn_svg`

Exports the diagram as SVG for visualization.

`list_bpmn_elements`

Lists all elements in a diagram.

`import_bpmn_xml`

Imports an existing BPMN XML file for editing.

Example Output

The server generates standard BPMN 2.0 XML files that can be opened in:

Example XML output:

<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL"
                   xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"
                   xmlns:dc="http://www.omg.org/spec/DD/20100524/DC"
                   xmlns:di="http://www.omg.org/spec/DD/20100524/DI">
  <bpmn:process id="Process_1" isExecutable="true">
    <bpmn:startEvent id="Event_1" name="Start">
      <bpmn:outgoing>Flow_1</bpmn:outgoing>
    </bpmn:startEvent>
    <bpmn:task id="Task_1" name="Process">
      <bpmn:incoming>Flow_1</bpmn:incoming>
      <bpmn:outgoing>Flow_2</bpmn:outgoing>
    </bpmn:task>
    <bpmn:endEvent id="Event_2" name="End">
      <bpmn:incoming>Flow_2</bpmn:incoming>
    </bpmn:endEvent>
    <bpmn:sequenceFlow id="Flow_1" sourceRef="Event_1" targetRef="Task_1" />
    <bpmn:sequenceFlow id="Flow_2" sourceRef="Task_1" targetRef="Event_2" />
  </bpmn:process>
  
</bpmn:definitions>

Development

Running in Development Mode

npm run watch

This will rebuild the project automatically when source files change.

Testing

You can test the server manually using the MCP protocol:

node dist/index.js

Then send JSON-RPC requests via stdin. Example: ```js

Tools (7)

create_bpmn_diagramCreates a new BPMN diagram and returns a diagram ID.
add_bpmn_elementAdds an element like events, tasks, or gateways to the diagram.
connect_bpmn_elementsCreates a sequence flow between two elements.
export_bpmn_xmlExports the diagram as BPMN 2.0 XML format.
export_bpmn_svgExports the diagram as SVG for visualization.
list_bpmn_elementsLists all elements in a diagram.
import_bpmn_xmlImports an existing BPMN XML file for editing.

Configuration

claude_desktop_config.json
{"mcpServers": {"bpmn": {"command": "node", "args": ["/absolute/path/to/BPMN-MCP/dist/index.js"]}}}

Try it

Create a BPMN diagram for an order processing workflow with start, validate, process, and end steps.
Create a BPMN diagram for customer support ticket routing with a decision gateway for high vs normal priority.
Export the current workflow diagram as an SVG file.
Import the existing bpmn file and add a new service task to the process.

Frequently Asked Questions

What are the key features of BPMN-MCP?

Generate new BPMN 2.0 workflow diagrams from scratch. Insert various process elements including tasks, gateways, and events. Create sequence flows between workflow components. Export diagrams to standard BPMN 2.0 XML or SVG formats. Import and modify existing BPMN XML files.

What can I use BPMN-MCP for?

Automating the documentation of business processes for internal teams. Generating workflow diagrams directly from natural language requirements. Integrating AI-assisted process design into existing BPMN modeling tools like Camunda. Rapidly prototyping process flows for software development projects.

How do I install BPMN-MCP?

Install BPMN-MCP by running: git clone https://github.com/dattmavis/BPMN-MCP.git && cd BPMN-MCP && npm install && npm run build

What MCP clients work with BPMN-MCP?

BPMN-MCP works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep BPMN-MCP docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare