symfony-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
symfony-mcp-server by klapaudius | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 30 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsCommunication | File SystemDeveloper ToolsProductivity |
| Language | PHP | TypeScript |
| Last commit | 1 mo ago | this month |
symfony-mcp-server · Summary
A Symfony package for building enterprise-grade MCP servers with real-time communication and AI agent capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
symfony-mcp-server · Use cases
- Building intelligent code review agents that can analyze code for security vulnerabilities and performance issues
- Creating data analysis agents that can process complex datasets and generate insights
- Developing customer support agents with context-aware responses and personalized recommendations
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
symfony-mcp-server · Install
Installation
- Install the package via Composer:
composer require klapaudius/symfony-mcp-server- Configure the bundle in your
config/bundles.php:
return [
// ...
Klapaudius\SymfonyMcpServer\SymfonyMcpServerBundle::class => ['all' => true],
];- Configure the MCP server in your
config/packages/symfony_mcp_server.yaml:
symfony_mcp_server:
transport: 'sse' # or 'streamable_http'
tools:
- App\Tools\IntelligentAnalyzer
- App\Tools\CodeReviewAgent- Start the server:
php bin/console server:startFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"symfony-mcp": {
"command": "php",
"args": ["bin/console", "mcp:server"],
"env": {
"APP_ENV": "dev"
}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.