From cc0ba90128e0f633f7c2ae60d5b520dfaa646eb7 Mon Sep 17 00:00:00 2001 From: Gabi Udrescu Date: Wed, 8 Apr 2026 23:09:37 +0300 Subject: [PATCH] Add recipe for productowner-ro/symfony-profiler-mcp 0.1 (#1962) * Add Symfony Flex recipe for productowner-ro/symfony-profiler-mcp 0.0 Registers the bundle for dev environment and creates config files to enable symfony/mcp-bundle transports (stdio + http) and routes. Without this recipe, symfony/mcp-bundle's transports are disabled by default, leaving neither `bin/console mcp:server` nor `/_mcp` available after install. * fix: add trailing newlines to all recipe files * fix: use recipe version 0.1 to match v0.1.0 release --- .../0.1/config/packages/symfony_profiler_mcp.yaml | 5 +++++ .../0.1/config/routes/symfony_profiler_mcp.yaml | 4 ++++ productowner-ro/symfony-profiler-mcp/0.1/manifest.json | 8 ++++++++ 3 files changed, 17 insertions(+) create mode 100644 productowner-ro/symfony-profiler-mcp/0.1/config/packages/symfony_profiler_mcp.yaml create mode 100644 productowner-ro/symfony-profiler-mcp/0.1/config/routes/symfony_profiler_mcp.yaml create mode 100644 productowner-ro/symfony-profiler-mcp/0.1/manifest.json diff --git a/productowner-ro/symfony-profiler-mcp/0.1/config/packages/symfony_profiler_mcp.yaml b/productowner-ro/symfony-profiler-mcp/0.1/config/packages/symfony_profiler_mcp.yaml new file mode 100644 index 00000000..60ee1292 --- /dev/null +++ b/productowner-ro/symfony-profiler-mcp/0.1/config/packages/symfony_profiler_mcp.yaml @@ -0,0 +1,5 @@ +when@dev: + mcp: + client_transports: + stdio: true + http: true diff --git a/productowner-ro/symfony-profiler-mcp/0.1/config/routes/symfony_profiler_mcp.yaml b/productowner-ro/symfony-profiler-mcp/0.1/config/routes/symfony_profiler_mcp.yaml new file mode 100644 index 00000000..1cd11e70 --- /dev/null +++ b/productowner-ro/symfony-profiler-mcp/0.1/config/routes/symfony_profiler_mcp.yaml @@ -0,0 +1,4 @@ +when@dev: + mcp: + resource: . + type: mcp diff --git a/productowner-ro/symfony-profiler-mcp/0.1/manifest.json b/productowner-ro/symfony-profiler-mcp/0.1/manifest.json new file mode 100644 index 00000000..358174cb --- /dev/null +++ b/productowner-ro/symfony-profiler-mcp/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "ProductOwner\\SymfonyProfilerMcp\\SymfonyProfilerMcpBundle": ["dev"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}