Skip to main content

LeanIX enterprise-architecture helper: GraphQL proxy, factsheet download, and graph loading into KuzuDB or Neo4j

Project description

dvm-eahelper — LeanIX Enterprise Architecture Helper

Successor to dvm-leanix and dvm-eagraph, combined into a single package.

One CLI (eahelper) to:

  • Run eahelper server — a GraphQL proxy to SAP LeanIX plus an embedded MCP server in a single process, with the debug browser managed automatically
  • Extract the Bearer token from a managed (or your own) browser via Playwright CDP
  • Download factsheets and relationships as JSON
  • Load them into a graph database — KuzuDB (embedded, default) or Neo4j
  • Query the graph from any MCP-aware tool (Claude Code, VS Code Copilot, ...)

Works on Windows and macOS.

Installation

uv tool install dvm-eahelper        # or: pip install dvm-eahelper
uvx playwright install chromium     # one-time, for the proxy

Quick start

eahelper server

On first run this prompts for your LeanIX workspace URL and preferred graph database, saves the answers to ~/.eahelper/config.toml (so you're only asked once), launches a managed debug browser to capture a Bearer token, then closes it again. The server exposes the GraphQL proxy and an MCP endpoint on one port (default 8765).

eahelper download --relations   # auto-starts the server if it isn't running
eahelper load                   # prompts for DB backend the first time; then remembers it
eahelper load --db neo4j        # or choose explicitly

KuzuDB is embedded — no server needed; the database is a local directory (--db-path, or [graph].kuzu_path in config.toml, default ./eahelper-kuzu-db). For Neo4j, start your server and put NEO4J_URI, NEO4J_USERNAME, NEO4J_PASSWORD in a .env file (never in config.toml — no secrets are stored there).

Configuration

Settings are resolved in this order for every value: CLI flag → environment variable → ~/.eahelper/config.toml → interactive prompt (saved back to config.toml) → built-in default.

eahelper config              # show effective config
eahelper config path         # print the config file path
eahelper config set graph.db kuzu
eahelper config set leanix.workspace_url https://eu-10.leanix.net/YourWorkspace
eahelper config unset browser.browser

Sections: [leanix] workspace_url, proxy_port · [browser] browser, cdp_port, keep_open · [graph] db, kuzu_path, mcp_read_only · [neo4j] uri.

MCP (Model Context Protocol)

eahelper server mounts an MCP server at /mcp (streamable HTTP), exposing get_schema() and query(cypher) tools against your graph database. A stdio variant is also available for harnesses that spawn a subprocess:

eahelper mcp                      # stdio transport
eahelper mcp-config                # print Claude Code / VS Code config snippets
eahelper mcp-config --install      # write/merge .mcp.json and .vscode/mcp.json

Pass --mcp-read-only to eahelper server (or set [graph] mcp_read_only = true) to reject write Cypher queries.

Managed browser

By default, eahelper server launches and closes a debug browser automatically (persistent profile at ~/.eahelper/browser-profile, CDP port 19222) whenever a LeanIX token is needed, and never touches a browser it didn't start. Pass --keep-browser (or set [browser] keep_open = true) to leave it open.

If you prefer to manage the browser yourself, launch it manually and eahelper will connect to the existing CDP endpoint instead of starting a new one:

Windows (PowerShell, Edge — requires ALL other Edge windows closed first):

Start-Process "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" `
  "--remote-debugging-port=19222 --user-data-dir=C:\Temp\edge-debug --no-first-run --no-default-browser-check"

macOS (Chrome):

open -na "Google Chrome" --args --remote-debugging-port=19222 --user-data-dir="$HOME/chrome-debug"

Commands

Command Purpose
eahelper server GraphQL proxy + MCP server (foreground); add start/stop/status for background
eahelper proxy Legacy standalone GraphQL proxy + GraphiQL UI
eahelper diagnose Check browser/CDP/SSL connectivity
eahelper download Download factsheets & relationships to JSON
eahelper load Load downloaded JSON into KuzuDB or Neo4j
eahelper seed Seed example/reference data
eahelper mcp MCP server over stdio
eahelper mcp-config Print/install MCP client config snippets
eahelper config View or edit ~/.eahelper/config.toml

download and load auto-start eahelper server in the background if it isn't already running.

Agent skill

An installable Agent Skill (Claude Code, GitHub Copilot, and other agentskills.io-compatible tools) that walks you through setup and usage lives at dvm-eahelper-skills.

Migrating from dvm-leanix / dvm-eagraph

Old New
dvm-leanix serve / lean-ix serve eahelper proxy
dvm-leanix download eahelper download
dvm-leanix diagnose eahelper diagnose
dvm-eagraph eahelper load
dvm-eagraph-seed eahelper seed

Token store moved from ~/.lean-ix/ to ~/.eahelper/.

License

MIT

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

dvm_eahelper-0.2.1.tar.gz (142.7 kB view details)

Uploaded Source

Built Distribution

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

dvm_eahelper-0.2.1-py3-none-any.whl (72.2 kB view details)

Uploaded Python 3

File details

Details for the file dvm_eahelper-0.2.1.tar.gz.

File metadata

  • Download URL: dvm_eahelper-0.2.1.tar.gz
  • Upload date:
  • Size: 142.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dvm_eahelper-0.2.1.tar.gz
Algorithm Hash digest
SHA256 893646654ee203b67a5efb4a199860775a2c50602817d36038986833564e8562
MD5 d773e79ac18d976ecb5f1c7e574a592b
BLAKE2b-256 1dd06eed7dda3c5ed7a4a8281c5b4880caf37201639d410690fb34268a5730e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dvm_eahelper-0.2.1.tar.gz:

Publisher: publish.yml on divyavanmahajan/dvm-eahelper

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dvm_eahelper-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: dvm_eahelper-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 72.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dvm_eahelper-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c5d5892ad839d43c4a0c62e7c0c0afd71a44f696bd2fd95706c255b4811c1691
MD5 9c861dbf914d67ac7ae61bef0b2ba6b9
BLAKE2b-256 96f3e135a576e0c481473b304132e5c8a987647eb932e658fe890e2fe74da745

See more details on using hashes here.

Provenance

The following attestation bundles were made for dvm_eahelper-0.2.1-py3-none-any.whl:

Publisher: publish.yml on divyavanmahajan/dvm-eahelper

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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