Symfony Debug MCP Server
Enables debugging Symfony applications by inspecting profiler data through a standalone MCP server.
README
Symfony Debug MCP Server
This is a standalone Model Context Protocol (MCP) server built with TypeScript and Bun that allows you to debug Symfony applications by inspecting profiler data. It is designed to be compiled into a single executable binary for Linux, macOS, and Windows.
Installation & Usage
Download the latest release for your platform from the Releases page.
Linux
- Extract the archive:
tar -xzf symfony-debug-mcp-linux.tar.gz - Make it executable:
chmod +x symfony-debug-mcp-linux - Run the server:
./symfony-debug-mcp-linux --repository-directory=/path/to/your/repositories
macOS
- Extract the archive:
unzip symfony-debug-mcp-mac.zip - Make it executable:
chmod +x symfony-debug-mcp-mac - Run the server:
Note: You may need to go to System Settings > Privacy & Security to allow the application to run if it's blocked../symfony-debug-mcp-mac --repository-directory=/path/to/your/repositories
Windows
- Extract
symfony-debug-mcp-windows.zip. - Open a terminal (PowerShell or Command Prompt).
- Run the server:
.\symfony-debug-mcp-windows.exe --repository-directory=C:\path\to\your\repositories
Client Configuration
To use with Claude Desktop or other MCP clients, add this to your config:
{
"mcpServers": {
"symfony-debug": {
"command": "/absolute/path/to/symfony-debug-mcp-linux",
"args": ["--repository-directory=/absolute/path/to/your/repositories"]
}
}
}
Prerequisites
- Bun (v1.0.0 or higher)
Setup
-
Install dependencies:
bun install -
Run in development mode:
bun dev
Compilation
You can compile the server into a standalone binary for different platforms.
- Linux:
bun run build:linux - macOS (Apple Silicon):
bun run build:mac - Windows (x64):
bun run build:windows - Build All:
bun run build:all
The binaries will be output to the dist/ directory.
Testing with an MCP Client
You can configure your MCP client (like Claude Desktop or an IDE extension) to use this server.
Raw Source (Development):
{
"mcpServers": {
"my-bun-server": {
"command": "bun",
"args": ["run", "/absolute/path/to/src/index.ts"]
}
}
}
Compiled Binary:
{
"mcpServers": {
"my-bun-server": {
"command": "/absolute/path/to/dist/mcp-server-linux",
"args": []
}
}
}
Debugging
VS Code Debugger
- Go to the "Run and Debug" view in VS Code.
- Select "Debug MCP Server" to start the server with the debugger attached.
- This runs
bun run --inspect-wait src/index.ts. - The debugger will pause at the entry point until execution resumes.
- This runs
MCP Inspector
To test the server protocol interactively:
- Run the "inspector" task (Terminal -> Run Task -> inspector).
- This will launch the
@modelcontextprotocol/inspectorwhich provides a web interface to interact with your tools and resources. - Open the URL shown in the terminal (usually
http://localhost:6274).
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.