Download the PHP package productowner-ro/symfony-profiler-mcp without Composer

On this page you can find all versions of the php package productowner-ro/symfony-profiler-mcp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package symfony-profiler-mcp

Symfony Profiler MCP

Symfony bundle that exposes profiler data to AI-powered IDEs via the Model Context Protocol. Built on symfony/mcp-bundle.

By ProductOwner.ro in collaboration with Claude.

Inspired by killerwolf/mcp-profiler-bundle. Rewritten from scratch to fix context bloat, broken tool names, and missing data redaction.

Requirements

Installation

The Symfony Flex recipe configures symfony/mcp-bundle transports and routes automatically. If your project doesn't use Flex, create the following files manually:

Manual configuration (without Flex) **`config/packages/mcp.yaml`** **`config/routes/mcp.yaml`** (only needed if using HTTP transport) Then clear the cache and verify:

How It Works

This bundle uses a two-tier data model to keep context size minimal:

  1. Tools return compact summaries with resource_uri pointers
  2. Resources provide full detail only when explicitly requested

MCP Tools

Tool Description
symfony-profiler-list List recent profiles with filters (method, status, url, ip, limit)
symfony-profiler-get Get profile summary with available collector URIs

MCP Resource Templates

URI Template Description
symfony-profiler://profile/{token} Profile overview with list of collectors
symfony-profiler://profile/{token}/{collector} Formatted collector data

Key Differences from killerwolf/mcp-profiler-bundle

Issue Original This Bundle
Tool names profiler:list (breaks Claude Code) symfony-profiler-list (API-compliant)
Context size Dumps ALL collectors at once (megabytes) Two-tier: summaries first, detail on demand
Response format Mixed JSON + VarDumper text Always clean JSON
Security Exposes cookies, auth headers, server vars Automatic redaction of sensitive data
Code duplication Path logic copy-pasted 4x Single ProfilerStorageResolver
MCP protocol 220 lines hand-rolled JSON-RPC Uses symfony/mcp-bundle (zero protocol code)
PHP 8.4 Deprecation warnings Clean support

Multi-App Support

The bundle auto-discovers profiler directories in multi-app Symfony setups (e.g., var/cache/app1_hash/dev/profiler). No configuration needed.

Custom Collector Formatters

Implement CollectorFormatterInterface and tag your service:

The CollectorFormatterInterface is auto-tagged. Just register your class as a service.

IDE Configuration

Claude Code

Cursor / Windsurf

Add to your MCP configuration following the same pattern.

License

MIT - See LICENSE.


All versions of symfony-profiler-mcp with dependencies

PHP Build Version
Package Version
Requires php Version >=8.2
symfony/framework-bundle Version ^7.3|^8.0
symfony/http-kernel Version ^7.3|^8.0
symfony/mcp-bundle Version ^0.6
symfony/finder Version ^7.3|^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package productowner-ro/symfony-profiler-mcp contains the following files

Loading the files please wait ...