MCP Catalogs
Home

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
Score7741
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOps & Infra
LanguageTypeScriptPHP
Last committhis month10 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/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.