{"slug": "mps-2026-1-has-been-released", "title": "MPS 2026.1 Has Been Released!", "summary": "JetBrains has released MPS 2026.1, which now uses IntelliJ Platform 2026.1, JDK 25, and Kotlin 2.3, and introduces the bundled Projectional Agent Toolkit plugin that enables AI coding agents to read and write MPS models via the Model Context Protocol. The release also brings transitive dependencies to Build Language, more reproducible migrations, and a substantial quality update to Java stubs.", "body_md": "[Releases](/mps/category/releases/)\n\n# MPS 2026.1 Has Been Released!\n\nMPS now uses IntelliJ Platform 2026.1, JDK 25, and Kotlin 2.3. Build Language gains transitive dependencies, migrations are more reproducible, and Java stubs have received a substantial quality update. The bundled Projectional Agent Toolkit plugin enables AI coding agents to read and write MPS models, thus opening up a number of cutting-edge development concepts for MPS developers and language authors.\n\n# What’s new\n\nHere are the most noteworthy new features.\n\n## Projectional Agent Toolkit – AI coding agents can now work directly with MPS models\n\nMPS ships with the **Projectional Agent Toolkit**, a plugin that exposes the MPS projection, model, and language workbench to AI coding agents through the [Model Context Protocol](https://modelcontextprotocol.io/). Agents such as Claude Code, OpenAI Codex, JetBrains Junie, and any other MCP-compatible client can connect to a running MPS instance and operate on it the way a developer would – navigating modules and models, reading and editing nodes through the projectional editor, resolving references, inspecting concept hierarchies, generating code, and running configurations. They no longer have to treat `.mps`\n\nfiles as opaque XML.\n\nThe **Projectional Agent Toolkit** contributes a dozen toolsets covering the full surface of an MPS project:\n\n**Project, modules, and models**– These make it possible for agents to enumerate solutions, languages, and devkits; open and create models; and resolve dependencies.**Languages and concepts**– These give agents the ability to inspect concept hierarchies, properties, children, references, and inheritance, as well as implement structure concepts from a JSON blueprint.**Root nodes and nodes**– These allow agents to read, create, update, move, and delete nodes through node-aware operations that respect concept constraints rather than text-level edits.**References and scopes**– These enable agents to query assignable targets for a reference link, so the agent picks a valid referent the first time.**Run configurations**– These give agents the ability to list and execute project run configurations to validate changes end to end.\n\nTo make sure agents become productive as quickly as possible, the toolkit also bundles a set of **skills** – focused, model-aware playbooks that ship with the tools. They teach the agent how MPS languages are organized, how to implement structure concepts, how to work with the editor, how to write BaseLanguage as a Json AST, and how to record DSL-specific memories for future sessions. Skills are discoverable through the same MCP channel, so a freshly connected agent can ask MPS what it should know before it starts editing.\n\nThe experience of working with various AI assistants in IntelliJ-based IDEs now extends naturally to language and DSL development: An agent can implement a new concept, wire up its editor and constraints, add behavior methods, create DSL code, regenerate it, and test and run the result – all while staying inside the MPS semantic model. For language designers, this transforms AI assistance from a code-completion convenience into a collaborator that understands projection.\n\nThe **Projectional Agent Toolkit** is an experimental feature and may be subject to API changes in the future. It is bundled and enabled by default. Just start the embedded MCP server and point your MCP-capable agent at the MPS instance; the toolsets and skills appear automatically.\n\nRead the [Projectional Agent Toolkit documentation](https://www.jetbrains.com/help/mps/mps-projectional-agent-toolkit.html) for full details.\n\n## Migration to IntelliJ Platform 2026.1, JDK 25, and Kotlin 2.3\n\nMPS 2026.1 completes the jump to the current generation of the IntelliJ Platform. The runtime is JDK 25, and the embedded Kotlin version is 2.3.0. Additionally, MPS now builds and ships its own `kotlinx-metadata-klib`\n\n/ `kotlin-metadata-jvm`\n\nartifacts from the Kotlin repository with the matching 2.3.0 tag, restoring the KLib-based Kotlin stubs support that the last public `kotlinx-metadata-klib:0.0.6`\n\ncould no longer provide.\n\n## Ability to check ICheckedNamePolicy against specific natural languages\n\nMPS now uses the IntelliJ Platform’s natural language support, provided by Grazie. This means you can check whether string values in instances of `ICheckedNamePolicy`\n\n, such as intentions, actions, or tools, have proper capitalization according to the rules of a specific natural language.\n\nYou can now install natural language support for your preferred languages into MPS, and the IDE will detect the language used in strings and verify that individual words are capitalized correctly. You can also bypass the language detection mechanism and specify your desired language explicitly.\n\nIn addition to the default *Title-case* capitalization rules, MPS offers three other options:\n\n*Sentence-case*, which follows the IntelliJ Platform’s rules.*Inherited*, which uses the capitalization rules of the closest ancestor`ICheckedNamePolicy`\n\n.*No capitalization rules*.\n\n## New boolean editor style: read-only-inspector\n\nThe new `read-only-inspector`\n\nstyle applies the read-only property on all editor cells in the inspector. When this style is applied to a cell in the main editor, the inspector becomes read-only for the inspected node when the cell with this style is selected. The new style has the following properties:\n\n- It is disabled by default.\n- The style is inheritable and overridable, just like the\n`read-only`\n\nstyle. - It has no effect on main editor cells.\n- The\n`read-only`\n\nstyle set by this mechanism can be overridden in any cell farther down the inspector’s editor cell tree.\n\n## Transitive dependencies in Build Language\n\nBuild Language no longer requires every transitively reachable build script to be listed in `dependencies`\n\n. This means that a build script, `BuildA`\n\n, that depends on `BuildB`\n\ncan now reach `BuildC`\n\nthrough `BuildB`\n\n— provided that `BuildB`\n\ndepends on `BuildC`\n\n— without having to list `BuildC`\n\nexplicitly. The generator emits `${artifacts.BuildC}`\n\nAnt properties for such cases, and these properties can be supplied from the outer build tool, such as Gradle or Maven.\n\nThis lets you split large builds into smaller ones without forcing every user to update the dependency lists. For example, a single `platform`\n\nbuild script can wrap a growing set of external libraries used across sub-projects.\n\n## More reliable migrations via recorded dependencies\n\nMigration code previously decided which migrations to apply based on the actual module dependencies and used languages collected at migration time, but it would read versions from the dependency snapshot recorded in the module descriptor. That mismatch could cause migrations to use a different view of the world than the one the module was last modified against.\n\nIn version 2026.1, the migration machinery consistently uses the dependencies and used languages recorded in the module descriptor at the moment of last modification, not the currently observable state. The migration checker was refactored accordingly. It now reuses information already collected for the migration process instead of recomputing it on demand.\n\n## Modernized project lifecycle\n\nWith `MPSProject`\n\nhaving moved from a legacy IntelliJ IDEA `ProjectComponent`\n\nto a project service, MPS-aware features need a reliable way to be notified about `MPSProject`\n\nbecoming available and going away.\n\nThis version introduces a dedicated mechanism for managing `MPSProject`\n\nstartup and shutdown activities, giving MPS control over the sequencing, grouping, ordering, and threading of those activities. This was something the platform’s `ProjectActivity`\n\nand `MPSProjectActivity`\n\ncould not offer.\n\nHow it works: Implementors register against the `jetbrains.mps.project.lifecycleListener`\n\nextension point, declared in `MPSCore.xml`\n\n, via a `ProjectLifecycleListener.Bean`\n\nwith a `listenerClass`\n\nand an optional integer `priority`\n\n. The `LifecycleEventDispatch.java`\n\ninside `MPSProject`\n\ncan fire:\n\n`projectReady`\n\n– non-blocking.`projectDiscarded`\n\n– blocking.`asyncProjectClosed`\n\n– non-blocking.\n\n## More new features…\n\nCheck out all the new functionality on the [What’s New](https://www.jetbrains.com/mps/whatsnew/) page.\n\n## New UI\n\nThe Classic UI plugin is disabled by default in this release and will no longer be supported in a future update. If you’re using the plugin, we recommend migrating to the new UI.\n\nThe full list of fixed issues can be found [here](https://youtrack.jetbrains.com/issues/MPS?q=state:Resolved%20Fix%20versions:%20%7B2026.1*%7D%20%20order%20by:%20Priority%20).\n\nTry the new features and [let us know](https://youtrack.jetbrains.com/issues/MPS) what you think.\n\nThe JetBrains MPS team\n\n#### Subscribe to MPS Blog updates", "url": "https://wpnews.pro/news/mps-2026-1-has-been-released", "canonical_source": "https://blog.jetbrains.com/mps/2026/07/mps-2026-1-released/", "published_at": "2026-07-14 13:21:12+00:00", "updated_at": "2026-07-17 09:23:01.705849+00:00", "lang": "en", "topics": ["developer-tools", "ai-agents", "generative-ai", "artificial-intelligence"], "entities": ["JetBrains", "MPS", "IntelliJ Platform", "JDK 25", "Kotlin 2.3", "Projectional Agent Toolkit", "Model Context Protocol", "Claude Code"], "alternates": {"html": "https://wpnews.pro/news/mps-2026-1-has-been-released", "markdown": "https://wpnews.pro/news/mps-2026-1-has-been-released.md", "text": "https://wpnews.pro/news/mps-2026-1-has-been-released.txt", "jsonld": "https://wpnews.pro/news/mps-2026-1-has-been-released.jsonld"}}