laravel-loop vs time
Side-by-side comparison to help you pick between these two MCP servers.
laravel-loop by kirschbaum-development | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 128 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsCommunication |
| Language | PHP | TypeScript |
| Last commit | 2 mo ago | this month |
laravel-loop · Summary
Laravel Loop is an MCP server connecting Laravel applications with AI assistants via tools for models, factories, and Stripe integration.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
laravel-loop · Use cases
- Interact with Laravel models directly from AI assistants
- Generate test data using Laravel factories through MCP clients
- Perform Stripe payment operations from AI coding assistants
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-loop · Install
Installation
Install via Composer:
composer require kirschbaum-development/laravel-loopPublish configuration:
php artisan vendor:publish --tag="loop-config"Configuration
Register tools in app/Providers/AppServiceProvider:
use Illuminate\Support\ServiceProvider;
use Kirschbaum\Loop\Facades\Loop;
use Kirschbaum\Loop\Toolkits;
use Kirschbaum\Loop\Tools;
Loop::toolkit(Kirschbaum\Loop\Filament\FilamentToolkit::make());Connecting to MCP Server
STDIO Transport
Start the MCP server:
php artisan loop:mcp:start [--user-id=1 [--user-model=] [--auth-guard=] [--debug]]Configure Claude Code:
claude mcp add laravel-loop-mcp php /your/full/path/to/laravel/artisan loop:mcp:start --user-id=1JSON Configuration:
{
"mcpServers": {
"laravel-loop-mcp": {
"command": "php",
"args": [
"/your/full/path/to/laravel/artisan",
"loop:mcp:start",
"--user-id=1"
]
}
}
}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"]
}
}
}