Skip to main content

Add your description here

Project description

appkit-bpmn-server

An MCP Apps-compliant server that generates, edits, and manages BPMN 2.0 diagrams from natural language — powered by LLMs.

Describe a business process in plain text and get a valid, layouted BPMN diagram with an interactive viewer rendered inline in any MCP Apps-capable host (Claude, ChatGPT, VS Code, etc.).

Screenshot

Features

  • Natural language to BPMN — Generate process diagrams from text descriptions
  • Interactive viewer — Built-in bpmn-js editor with zoom, pan, and editing capabilities
  • Update diagrams — Modify existing diagrams via follow-up prompts without starting over
  • Persistent storage — SQLite-backed diagram storage with Alembic migrations
  • User assignment — Associate diagrams with specific users via x-user-id header or query parameter (defaults to -1)
  • Auto-layout — Automatic swimlane arrangement and edge routing
  • Validation — Generated BPMN XML is validated before storage
  • MCP Apps UI — Inline rendering in any compliant chat host

Architecture

MCP Host (Claude, ChatGPT, …)
  │
  │  MCP over HTTP (stateless)
  ▼
appkit-bpmn-server      ← this repo (configuration + startup)
  │
  ├─ appkit-mcp-bpmn    ← MCP tools, viewer, BPMN generation
  ├─ appkit-commons     ← shared config, OpenAI client, registry
  └─ SQLite database    ← diagram persistence

Prerequisites

  • Python 3.14+
  • uv package manager
  • An OpenAI-compatible API key (Azure OpenAI or OpenAI)

Getting Started

1. Clone and install

git clone https://github.com/jenreh/appkit-bpmn-server.git
cd appkit-bpmn-server
uv sync

2. Configure environment

Create a .env file in the project root:

OPENAI_API_KEY=your-api-key
OPENAI_BASE_URL=https://your-endpoint.openai.azure.com/v1

3. Run database migrations

uv run alembic upgrade head

4. Start the server

uv run appkit_bpmn_server

The MCP endpoint will be available at http://127.0.0.1:8000/mcp.

5. Connect from an MCP client

Add the server to your MCP client configuration:

{
  "mcpServers": {
    "bpmn": {
      "url": "http://127.0.0.1:8000/mcp"
    }
  }
}

MCP Tools

Tool Description
new_bpmn_diagram Generate a new BPMN diagram from a natural language description
update_bpmn_diagram Modify an existing diagram using a follow-up prompt
save_bpmn_diagram Save pre-built BPMN XML
get_bpmn_xml Retrieve the BPMN XML for a diagram (app-only)
save_or_update Persist edits made in the viewer (app-only)
rename_bpmn_diagram Rename a diagram (app-only)

Tools marked app-only are hidden from the model and callable only from the interactive viewer.

Configuration

Server settings are in configuration/config.yaml:

app:
  mcp_bpmn:
    storage_mode: database          # database, filesystem, or both
    default_model: gpt-5.3-codex    # LLM model for generation
    max_file_size_mb: 10
    diagram_types:
      - process

User Assignment

Diagrams can be associated with a specific user by sending an x-user-id value. This can be provided as:

  • HTTP header: x-user-id: 123
  • Query parameter: ?x-user-id=123

If neither is provided, the user ID defaults to -1.

Download Buttons

The interactive viewer includes download buttons for exporting diagrams as .bpmn (XML) and .svg files. These buttons rely on the MCP Apps ui/download-file request, which requires the host to support this capability. If the host does not implement ui/download-file, the download buttons will have no effect.

Project Structure

├── configuration/
│   ├── config.yaml          # Development configuration
│   ├── config.prod.yaml     # Production overrides
│   └── logging.yaml         # Logging configuration
├── alembic/                 # Database migrations
├── src/
│   └── appkit_bpmn_server/
│       └── main.py          # Server entry point
├── pyproject.toml
└── .env                     # API keys (not committed)

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

appkit_bpmn_server-0.1.1.tar.gz (500.8 kB view details)

Uploaded Source

Built Distribution

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

appkit_bpmn_server-0.1.1-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file appkit_bpmn_server-0.1.1.tar.gz.

File metadata

  • Download URL: appkit_bpmn_server-0.1.1.tar.gz
  • Upload date:
  • Size: 500.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for appkit_bpmn_server-0.1.1.tar.gz
Algorithm Hash digest
SHA256 4712754dfc7df9d421b78b767c942e923a0560b4effd41204c457b3abcb1d33c
MD5 7e9b252ff23b9dbec5b78c63b304114f
BLAKE2b-256 3c2e38287dcfa887a2ac77c3e99f9ee690ef03fc967ba205c6c9ad31baf00420

See more details on using hashes here.

File details

Details for the file appkit_bpmn_server-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: appkit_bpmn_server-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for appkit_bpmn_server-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d6edc720e3f45074c493abcfda2c283319fe4e656a957ed4f04550090d0c7b0c
MD5 3bb3534055c0fafe3c7eb0f7b9e65b30
BLAKE2b-256 2ae3a6cda662d906a9ef105f0ccc5ba760fcc758bdab1d31e01a9045c2a7e63c

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