You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 12, 2025. It is now read-only.
Thanks for allowing symfony 6.4 support In release https://github.com/EdouardCourty/mcp-server-bundle/releases/tag/1.0.2
But in looks like the stringNode method used here
https://github.com/EdouardCourty/mcp-server-bundle/blob/main/src/DependencyInjection/Configuration.php
Was only added in 7.2
https://symfony.com/blog/new-in-symfony-7-2-misc-improvements-part-2#string-configuration-node
->stringNode('name')->defaultValue(self::DEFAULT_NAME)->end() ->stringNode('version')->defaultValue(self::DEFAULT_VERSION)->end()changing to
->scalarNode('name')->defaultValue(self::DEFAULT_NAME)->end() ->scalarNode('version')->defaultValue(self::DEFAULT_VERSION)->end()Should be ok to support both verisons