boost
by laravel
Overview
Accelerates AI-assisted development by providing essential context and structure for generating high-quality, Laravel-specific code via an MCP server.
Installation
php artisan boost:mcpEnvironment Variables
- BOOST_ENABLED
- BOOST_BROWSER_LOGS_WATCHER
- DB_CONNECTION
- DB_HOST
- DB_PORT
- DB_DATABASE
- DB_USERNAME
- DB_PASSWORD
Security Notes
The server exposes powerful tools with significant security implications. The 'Tinker' tool uses `eval()` allowing arbitrary PHP code execution, and 'Database Query' executes raw SQL queries (`DB::select`) after a basic keyword whitelist, posing a risk of SQL injection if the whitelist is bypassed. The 'CommandDetectionStrategy' and `installShellMcp` also dynamically execute shell commands for detection and installation, which could be exploited if inputs are not fully trusted. Additionally, the browser logger injects JavaScript into HTML responses to capture client-side logs and errors, which could inadvertently expose sensitive user data if not managed carefully. Disabling SSL verification for local/testing environments, though common, also adds a slight risk if misconfigured. These features, while intended, necessitate running the server in highly trusted and isolated development environments.
Similar Servers
ater.dry.cli
A .NET-based development assistance tool that streamlines front-end and back-end service creation through code generation, LLM integration, and provides command-line, Web UI, and MCP server interfaces.
consult-llm-mcp
An MCP server that allows AI agents like Claude Code to consult stronger, more capable AI models (e.g., GPT-5.2, Gemini 3.0 Pro) for complex code analysis, debugging, and architectural advice.
php-mcp
Facilitates communication and integration between LLM applications and external data sources or tools by implementing the Model Context Protocol (MCP).
mcp-client-laravel
Laravel-native client for interacting with Model Context Protocol (MCP) servers to discover and call tools, and access resources for AI agents.