symfony-mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
symfony-mcp-server by klapaudius | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 30 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsCommunication | ProductivityDeveloper ToolsCommunication |
| 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.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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"
}
}
}
}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}