·
3 commits
to 5.4.0-develop
since this release
Added
- Magento MCP lookup tools for AI agents. These tools help an agent inspect the current project and answer Magento-specific questions by locating modules, DI configuration, plugin interceptions, event observers, layout entities, UI components, and ACL or admin menu declarations:
find_magento_module,
find_di_config_for_class,
find_plugins_for_method,
find_observers_for_event,
find_layout_entities,
find_ui_component,
find_acl_or_menu - Magento MCP CLI environment discovery for AI agents. The
describe_magento_cli_environmenttool exposes project-local wrapper commands, including Mark Shust Docker-stylebin/*scripts such asbin/magentoandbin/n98-magerun2, so agents can prefer those wrappers over global binaries. - Magento MCP project and generation tools for AI agents. These tools can return the configured Magento root path and generate common Magento scaffolding directly in the opened project, including modules, plugins, observers, CRUD entities, controllers, CLI commands, blocks, view models, and product/category/customer EAV attributes:
get_magento_root_path,
create_magento_module,
create_magento_plugin,
create_magento_observer,
create_magento_entity_crud,
create_magento_controller,
create_magento_cli_command,
create_magento_block,
create_magento_view_model,
create_magento_product_eav_attribute,
create_magento_category_eav_attribute,
create_magento_customer_eav_attribute
Fixed
- Illegal char <|> #2669