time vs laravel-mcp-sdk
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | laravel-mcp-sdk by mohamedahmed01 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 29 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | PHP |
| Last commit | this month | 10 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
laravel-mcp-sdk · Summary
A comprehensive Laravel implementation of the Model Context Protocol with multiple transport options and tool registration.
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
laravel-mcp-sdk · Use cases
- Integrating AI capabilities into Laravel applications through standardized interfaces
- Building custom AI tools that interact with Laravel's ecosystem
- Creating real-time AI-powered features with WebSocket transport support
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"]
}
}
}laravel-mcp-sdk · Install
Installation
Install via Composer:
composer require laravelmcp/mcpThe package will automatically register its service provider and facade.
Configuration
- Publish the configuration:
php artisan vendor:publish --provider="LaravelMCP\MCP\MCPServiceProvider" --tag="config"- Configure environment variables:
MCP_SERVER_HOST=127.0.0.1
MCP_SERVER_PORT=8080
MCP_SERVER_TRANSPORT=httpClaude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"laravel-mcp": {
"command": "php",
"args": ["artisan", "mcp:serve"]
}
}
}