Read-only search and navigation of Sparx Enterprise Architect .qea model exports
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A read-only Model Context Protocol (MCP) server for Sparx Enterprise Architect .qea exports. Gives AI agents access to EA analysis models β search elements, navigate packages, read use case scenarios, and traverse connectors β without a running EA instance.
Works with any MCP client (VS Code / GitHub Copilot, Claude Desktop, Cursor, Windsurf). Reads the .qea SQLite export directly, never writes to it, and every response carries completeness metadata so an agent can tell a truncated answer from a complete one.
Keywords: MCP server Β· Sparx Enterprise Architect Β· .qea Β· UML Β· use case scenarios Β· package tree Β· connectors Β· diagrams Β· model search Β· AI agent tooling
node:sqlite module).qea file exported from Sparx Enterprise ArchitectThe quickest route is the Install in VS Code badge at the top of this page. There is nothing to
fill in: the server asks for your .qea path the first time an agent queries the model, and
remembers the answer for next time.
To register it from a terminal instead, which is handier for scripting or a shared setup, use one CLI call:
The \" sequences are for the code shim, which re-parses the argument after PowerShell has
already handed it over β escaping with PowerShell's own backtick, or using --%, still arrives with
the quotes stripped. The single quotes stop PowerShell from touching the string. On bash or zsh the
plain form works instead:
To configure it by hand instead, add to your project's .vscode/mcp.json:
Nothing personal is in that file, so it can be committed as-is and each developer answers the prompt
once on their own machine. If you would rather not be asked at all, name the path up front β as a
trailing argument, in an env block, or in a gitignored .env in your workspace root:
The same path-less configuration goes in claude_desktop_config.json (%APPDATA%\Claude\ on
Windows, ~/Library/Application Support/Claude/ on macOS):
Claude Desktop does not run the server from a workspace folder, so a .env there is not reliable.
If the client cannot show the path prompt at all, the server says so instead of failing silently, and
you can name the path in an env block:
To run straight from source instead of npm, use "args": ["-y", "github:mm6502/enterprise-architect-mcp"].
Once connected, try prompts like:
The server does not need a path to start. It looks for one when an agent first queries the model, and takes the first source that actually opens:
mcp-server-ea C:\path\to\model.qeaEA_QEA_PATH (set in an env block or system env).env file β EA_QEA_PATH=... in a .env file in the working directoryIf you would rather never see the prompt β a CI job, a shared image, or simply a preference β put
the path in a gitignored .env in the working directory. Copy the template:
Then set your local path in .env:
If the path points to a directory instead of a file, the server automatically picks the newest
.qea file in it by modification time β point it at your export folder and new exports are picked up
without reconfiguring anything:
The .env file is gitignored β each developer sets their own path without affecting the shared
config. It is also never committed, which is why it is the one route every new user has to set up by
hand; answering the prompt once is what makes that unnecessary.
A source naming a path that cannot be opened is skipped rather than fatal, so the next source gets
its turn. The reason goes to the server log, and once some later source opens, ea_get_model_info
lists it under skipped. That is deliberate β a sample value left in an env block would otherwise
outrank every answer you could give, and answering the prompt would never help. The cost is that a
genuine typo is demoted quietly, so check ea_get_model_info if the server opens a different model
than you expected.
Skipping is only worth it when an answer can take the skipped source's place, so two cases stay fatal: a path you passed on the command line (that is this run's explicit instruction, not a stale default), and any broken source in a client that cannot show a prompt β falling through there would quietly open some other model instead of telling you.
Answers are remembered per machine, in %APPDATA%\enterprise-architect-mcp\ on Windows,
~/Library/Application Support/enterprise-architect-mcp/ on macOS, and $XDG_CONFIG_HOME (or
~/.config) elsewhere; set EA_MCP_CONFIG_DIR to keep that file somewhere else. A path that does
not open is never remembered, so asking again is enough to correct a mistyped answer.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/enterprise-architect)<a href="https://allmcps.com/mcp/enterprise-architect"><img src="https://allmcps.com/api/badge/enterprise-architect?style=directory" alt="Enterprise Architect on AllMCPs" /></a>