MCP Catalogs
Home

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
Score7741
Official
Categories
ProductivityDeveloper ToolsCommunication
Developer ToolsAI / LLM ToolsOps & Infra
LanguageTypeScriptPHP
Last committhis month10 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/mcp

The package will automatically register its service provider and facade.

Configuration

  1. Publish the configuration:
php artisan vendor:publish --provider="LaravelMCP\MCP\MCPServiceProvider" --tag="config"
  1. Configure environment variables:
MCP_SERVER_HOST=127.0.0.1
MCP_SERVER_PORT=8080
MCP_SERVER_TRANSPORT=http

Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "laravel-mcp": {
      "command": "php",
      "args": ["artisan", "mcp:serve"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.