Complete JetBrains MPS workflow guide for DSL projects — models, languages, generators, node JSON blueprints, validation, MPS MCP tool usage, and the index of companion skills. Use whenever working in an MPS project, when AGENTS.md says to load the MPS workflow skill, or when you need to pick the right MPS aspect-specific skill.
74
92%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Entry point for working with JetBrains MPS (Meta Programming System) models, languages, generators, and the MPS MCP tools.
Read this together with AGENTS.md whenever the task involves MPS artifacts or MPS MCP tooling.
⚠️ STOP — If you are reading raw
.mpsor.mplXML files, you are way off track. MPS model files are opaque serialized XML: you cannot safely understand or edit them as plain text, and doing so will corrupt the model. Usemps_mcp_*tools instead. If they are not available, ask the user to start MPS and enable the MPS MCP server before continuing.
.mps / .mpl XML. Hand-edits silently corrupt model files.mps_mcp_update_root_node_from_json or surgical edits (mps_mcp_update_node, …) over delete-and-reinsert. Deleting destroys persistent IDs and breaks incoming references.mps_mcp_alter_nodes COPY_NODE and adjust the copy with mps_mcp_update_node, instead of printing the original and re-authoring it as a JSON blueprint. The copy is guaranteed structurally valid and needs no blueprint authoring at all.mps_mcp_reload_all (or rebuild the language module via mps_mcp_alter_nodes MAKE) before validating with mps_mcp_check_root_node_problems on a consumer model. Without a reload, cached compiled rules continue to fire — checking will report stale errors or miss new ones.mps_mcp_alter_structure), you MUST adhere to the following strict sequence of cross-tool steps before invoking dependent tools (such as mps_mcp_get_concept_details or mps_mcp_scaffold_editor):
mps_mcp_alter_structure).mps_mcp_alter_nodes with MAKE and rebuild=true targeting the language module (a model-scoped make can leave a never-before-deployed language's runtime hollow). Note: a plain mps_mcp_reload_all alone is not sufficient because the generated structure aspect descriptor classes on disk must be regenerated before the ClassLoader reloads them.mps_mcp_get_concept_details and verify that the descriptorStatus is not "hollow" and no warnings exist.mps_mcp_scaffold_editor) or define other aspects (behavior, constraints, typesystem, generator, etc.).
Failing to follow this ordering results in stale or hollow descriptors where dependent tools silently see empty properties, children, or references.
Shortcut: mps_mcp_alter_structure CREATE_CONCEPTS with make: true already does steps 2–3 — it clean-rebuilds, verifies every created descriptor against the runtime, and auto-recovers a never-deployed language (one module-scoped rebuild, recoveryStage: "module-rebuild"). Trust its makeStatus; run the manual chain only for structure edits made through tools that do not make (UPDATE_*/RENAME_* operations, mps_mcp_update_node).mps_mcp_update_node over re-running mps_mcp_update_root_node_from_json on the whole root."ok": true) does not mean the AST is semantically valid — always follow with mps_mcp_check_root_node_problems.Tool name note: MPS MCP tools are named with a
mps_mcp_prefix (e.g.mps_mcp_query_nodes,mps_mcp_alter_nodes,mps_mcp_get_concept_details). Your MCP client wraps these with a server-specific prefix (e.g.mcp__mps-mcp-server__<env>___), which varies by environment. Match tools by the stablemps_mcp_*suffix.
Which project the tools act on (subdirectory & multi-project checkouts). The
mps_mcp_*tools operate on the MPS project currently open in the running MPS instance. That project often lives in a subdirectory of your repository (e.g.<repo>/tools/BigProject, as in mbeddr or MPS-extensions), and one checkout may even hold several MPS projects. The host resolves the project from your client's workspace roots, then falls back to the single open project. If a tool call is rejected with "no project opened" or "multiple projects opened", callmps_mcp_list_open_projects, then supply the intended project'smpsProjectBaseDirectory— the folder MPS actually opened, i.e. a path at or inside it, not the repository root — via the host's project-path argument. This is the opposite ofmps_mcp_initialize_project_for_agents, whosetargetDirectoryis the repository / workspace root (where.agents/,.claude/,AGENTS.md, andCLAUDE.mdbelong), which may be an ancestor of the MPS project directory.Multi-project repository rules. All open MPS projects share the same module repository. Write targets — models, modules, root nodes, and nodes being mutated — must belong to the project selected by
projectPath; tools refuse writes to another open project's elements. Read/reference/dependency targets may come from another open MPS project when they are explicitly named or imported: model/module dependencies, model used languages/devkits, node concepts, and reference targets can point across projects, and the foreign elements are treated like read-only library/stub elements. Returned JSON for an element from another open project includescontainingProject: { name, mpsProjectBaseDirectory }andeditableFromCurrentProject: false; nested references use prefixes such asconceptContainingProject,targetContainingProject, ortypeContainingProject. These markers appear only for elements owned by another open project — their absence does not imply an element is editable (a read-only library/stub in the current project carriesreadOnly: truebut nocontainingProject), so decide editability fromreadOnlytogether with these markers.When in doubt, ask which project. When several MPS projects are open under one repository / VCS root, the
mps_mcp_*tools accept any valid project path and act relative to that project. Same-name resolution prefers the selected project's own elements before falling back to the shared repository, but an explicit reference may still resolve to another open project. If the intended project is not obvious from the user's request or the current editor focus (mps_mcp_get_current_editor_root_node), do not guess — show themps_mcp_list_open_projectsentries and ask the user which project the query or change should run against.
All MPS skills live in a per-harness directory loaded by the agent host (e.g. .agents/skills/<skill-name>/SKILL.md for AGENTS.md-aware hosts, .claude/skills/<skill-name>/SKILL.md for Claude Code). Load whichever ones apply to your current task.
Installing / refreshing the catalog. These
mps-*skills and the project'sAGENTS.md/CLAUDE.mdare installed and refreshed by themps_mcp_initialize_project_for_agentsMCP tool. It installs into atargetDirectory— normally your repository / workspace root (the folder containing.git), which may be an ancestor of the MPS project directory when the project sits in a subdirectory; leavetargetDirectoryempty to let the tool derive that root from the open project's enclosing VCS folder, and do not pass itprojectPath. If nomps-*skills exist yet, the project has not been initialized for agents — tell the user and offer to run it. If the catalog looks stale or incomplete, offer to refresh it (with approval): delete everymps-*skill folder from.agents/skills/and.claude/skills/— keeping any project-local*-dslskills — re-run the tool, then carefully merge its returnedagentsFileTextintoAGENTS.md/CLAUDE.md, preserving project-specific sections. See that tool's description for the exact refresh contract.
| Skill | What it covers |
|---|---|
mps-language-aspects-overview | Entry point for defining an MPS language — lists the aspects, what each owns, and the typical authoring order. Start here. |
mps-language-modularity | Design tier for multi-language work — choose between referencing, extension, reuse, and embedding before authoring aspects, then route into the aspect skills. Use when one language must see, extend, embed, or adapt another. |
mps-aspect-structure-concepts | Define concepts, interface concepts, enumerations, and constrained data types. Includes the full mps_mcp_alter_structure / mps_mcp_query_structure reference. |
mps-baselanguage | Author and edit jetbrains.mps.baseLanguage (Java) nodes — parser vs. JSON AST, concept mapping, reference harvesting, validation. Load when writing any Java/BaseLanguage code in MPS. |
mps-model-manipulation | Write and edit MPS BaseLanguage code that uses smodel, closures, and collections — manipulating nodes, lists, and queries. Use when editing checking rules, behavior methods, typesystem rules, or any model code that manipulates nodes. |
mps-aspect-accessories | Module/model dependencies, used languages, runtime solutions, accessory models. |
mps-aspect-actions | Node factories (the "actions" aspect) — concept-specific setup functions for newly created nodes. |
mps-aspect-behavior | ConceptBehavior — per-concept methods, constructors, virtual dispatch, calling behavior from other aspects. |
mps-aspect-constraints | Property validators/setters, referent scopes, canBe* rules (canBeChild/Parent/Ancestor/Root). |
mps-aspect-dataflow | Dataflow builders — control and data flow declarations for concept nodes, reachability analysis, variable-use checking. |
mps-aspect-editor-menus-and-keymaps | Non-layout parts of the MPS editor aspect — action maps, cell keymaps, transformation/substitute menus, side transforms, paste handlers, completion styling. |
mps-aspect-generator | Generator templates — root mapping rules, reduction rules, macros, mapping labels. |
mps-aspect-generation-plan | Generation plans — explicit ordering of generation steps, checkpoints, forks, plan contributions. |
mps-aspect-intentions | Intentions — Alt+Enter context actions, parameterized/surround/quick-fix variants. |
mps-aspect-migrations | Migration scripts — upgrading user models when language definitions change. |
mps-aspect-textgen | TextGen — concept-to-plain-text serialization rules. |
mps-aspect-typesystem | Typesystem — inference rules, subtyping, replacement, comparison, non-typesystem checking. |
mps-aspect-editor | Overall workflow for creating and changing MPS editor definitions — scaffolding, componentizing, cell models, layouts, styles, validation. |
mps-language-analysis | Analyze MPS language definitions — discover concepts, metadata, aspects, sample nodes. |
mps-language-inheritance | Investigate inheritance between MPS languages and concepts — extends, super, sub, assignable. |
mps-node-editing | Modify MPS nodes using JSON blueprints — the canonical workflow for any node mutation. |
mps-dsl-memory | Explore a live MPS DSL project and create or refresh generated project-local DSL skills under .agents/skills/<dsl-name>-dsl/. |
mps-lang-core-xml | jetbrains.mps.core.xml language for authoring XML documents and XML-generating generator templates. |
mps-quotations | MPS quotations and anti-quotations — node literals creating SNode trees inline in behavior/generator/model code. |
mps-build-language | MPS Build Language — declarative DSL generating Ant build.xml files for packaging plugins, Java modules, standalone IDEs. |
mps-ide-plugin | MPS IDE plugins — actions, action groups, tool windows, keymaps, preference components. |
mps-bugfix | MPS bugfixing workflow. |
MPS is a projectional editor and a language workbench. Unlike text-based IDEs, MPS works with an Abstract Syntax Tree (AST) directly. JSON is used to represent MPS nodes and their properties in a structured format for the MPS tools.
.agents/skills/*-dsl/ before starting unfamiliar DSL work. Use the relevant project-local DSL skill when it exists; if it is missing or stale, load mps-dsl-memory to create or refresh it.mps_mcp_get_current_editor_root_node so you know which root the user is looking at.mps-language-aspects-overview. Editing user code → load mps-node-editing and (often) mps-baselanguage. Investigating an unfamiliar language → load mps-language-analysis.mps_mcp_check_root_node_problems. Rebuild/reload after compiled-aspect changes.Open references/finding-things.md for the protocol on finding models, modules, and languages (including shortened-name resolution like j.m.l.core → jetbrains.mps.lang.core).
Open references/node-editing-rules.md for the full rulebook on adding/updating nodes (concept selection, role types, cardinality, assignability, persistent IDs, surgical edits, reload after compiled-aspect changes).
Open references/reference-formats.md for the reference-format protocol: node refs (r:/i:), concept refs (c:), and the critical "never use a concept ref where a node ref is expected" rule.
Open references/bulk-creation.md for the print-shallow-then-add-children staged construction workflow used when subtrees exceed the JSON size limit.
Open references/analysis-tools.md for the inventory of analysis operations (mps_mcp_print_node, mps_mcp_check_root_node_problems with its quickFixes/autoApplyQuickFixes, mps_mcp_list_node_intentions / mps_mcp_apply_intention, mps_mcp_alter_nodes FIX_REFERENCES, etc.).
Open references/editor-workflow.md for the MPS Concept Editor workflow (scaffold → componentize → refine → validate) and the editor procedural guidelines.
Open references/mcp-tools-index.md for the complete inventory of MPS MCP tools grouped by Project/Structure, Modules and Models, Root Nodes and Nodes, Console, and Language Definition.
.mps model files as plain text unless the user explicitly asks for it..mpl module descriptors manually if an MCP wiring tool (mps_mcp_module_dependency, mps_mcp_update_module, …) covers the change.52c9d63
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.