filesystem vs laravel-mcp-sdk
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | laravel-mcp-sdk by mohamedahmed01 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 29 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | PHP |
| Last commit | this month | 10 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
laravel-mcp-sdk · Summary
A comprehensive Laravel implementation of the Model Context Protocol with multiple transport options and tool registration.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
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"]
}
}
}