Skip to content

Commit cd6c9f1

Browse files
lint
1 parent 0ea2bfa commit cd6c9f1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/mcp-bundle/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ CHANGELOG
1919
* Add bundle configuration for enabling/disabling transports
2020
* Add cache-based SSE message storage
2121
* Add service configuration for MCP server setup
22-
* Added `\Symfony\AI\McpBundle\DependencyInjection\ContainerBuilder\MCPToolChainCompilerPass`
22+
* Added `\Symfony\AI\McpBundle\DependencyInjection\ContainerBuilder\McpToolChainCompilerPass`
2323
to find services tagged `mcp.tool` and register them in the MCP tool chain.

src/mcp-bundle/doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Configuration
6565
6666
To add your tools to the MCP server, add the tag:
6767

68-
.. code-block:: php
68+
Example::
6969

7070
#[AutoconfigureTag('mcp.tool')]
7171
class CurrentTimeTool implements MetadataInterface, ToolExecutorInterface

src/mcp-bundle/src/McpBundle.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\AI\McpBundle\Command\McpCommand;
1515
use Symfony\AI\McpBundle\Controller\McpController;
16-
use Symfony\AI\McpBundle\DependencyInjection\ContainerBuilder\MCPToolChainCompilerPass;
16+
use Symfony\AI\McpBundle\DependencyInjection\ContainerBuilder\McpToolChainCompilerPass;
1717
use Symfony\AI\McpBundle\Routing\RouteLoader;
1818
use Symfony\Component\Config\Definition\Configurator\DefinitionConfigurator;
1919
use Symfony\Component\DependencyInjection\ContainerBuilder;
@@ -26,7 +26,7 @@ public function build(ContainerBuilder $container): void
2626
{
2727
parent::build($container);
2828

29-
$container->addCompilerPass(new MCPToolChainCompilerPass());
29+
$container->addCompilerPass(new McpToolChainCompilerPass());
3030
}
3131

3232
public function configure(DefinitionConfigurator $definition): void

0 commit comments

Comments
 (0)