everything vs laravel-mcp-sdk
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | laravel-mcp-sdk by mohamedahmed01 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 29 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | PHP |
| Last commit | this month | 10 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
laravel-mcp-sdk · Summary
A comprehensive Laravel implementation of the Model Context Protocol with multiple transport options and tool registration.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythinglaravel-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"]
}
}
}