Boost

v1.0.0Developer Toolsstable

Laravel-focused MCP server for augmenting your AI powered local development experience.

aidevlaravel
Share:
3,479
Stars
0
Downloads
0
Weekly
0/5

What is Boost?

Boost is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to laravel-focused mcp server for augmenting your ai powered local development experience.

Laravel-focused MCP server for augmenting your AI powered local development experience.

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Laravel-focused MCP server for augmenting your AI powered lo

Use Cases

Laravel-focused MCP server for AI development
Augment local development with AI assistance
laravel

Maintainer

LicenseMIT
Languagephp
Versionv1.0.0
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx boost

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Boost

Laravel Boost is an official Laravel package that dramatically accelerates AI-assisted development by equipping AI agents with structured Laravel knowledge — coding guidelines, agent skills, and a semantic documentation API with over 17,000 pieces of Laravel-specific information. It installs a local MCP server (run via 'php artisan boost:mcp') that exposes tools for reading app structure, querying the database, inspecting schemas, reading logs, and searching Laravel documentation across all major ecosystem packages. Teams using Claude Code, Cursor, Codex, or Gemini CLI use it to get AI-generated Laravel code that follows framework conventions without constant manual correction.

Prerequisites

  • PHP 8.1+ and Composer installed
  • A Laravel application (version 10.x or higher recommended)
  • An AI coding agent: Claude Code, Cursor, Codex, Gemini CLI, or GitHub Copilot (VS Code)
  • The MCP client must support local stdio MCP servers
1

Install Laravel Boost via Composer

Add Laravel Boost as a development dependency in your Laravel project. It is installed per-project, not globally.

composer require laravel/boost --dev
2

Run the install Artisan command

The boost:install command generates AI guideline files (CLAUDE.md, AGENTS.md), agent skill files, and the .mcp.json configuration for detected coding agents. Select which coding agents you use when prompted.

php artisan boost:install
3

Verify automatic agent setup

For Claude Code, the MCP server is typically registered automatically. If not, register it manually using the claude mcp add command from within your project directory.

claude mcp add -s local -t stdio laravel-boost php artisan boost:mcp
4

Manually register the MCP server if needed

If your AI client requires manual MCP configuration, add the server using the command and args shown. This works for any client that supports stdio MCP servers.

{
  "mcpServers": {
    "laravel-boost": {
      "command": "php",
      "args": ["artisan", "boost:mcp"]
    }
  }
}
5

Keep Boost resources up to date

After updating Laravel or ecosystem packages, regenerate the AI guidelines and skills to reflect the installed versions. Use --discover to pick up newly installed packages.

php artisan boost:update --discover
6

Automate updates via Composer post-update hook

Add boost:update to your composer.json post-update-cmd scripts so guidelines stay current whenever you run composer update.

{
  "scripts": {
    "post-update-cmd": [
      "@php artisan boost:update --ansi"
    ]
  }
}

Boost Examples

Client configuration

MCP client configuration for the Laravel Boost MCP server running in a Laravel project.

{
  "mcpServers": {
    "laravel-boost": {
      "command": "php",
      "args": ["artisan", "boost:mcp"]
    }
  }
}

Prompts to try

Example prompts that use Laravel Boost's MCP tools for real development tasks.

- "What version of Laravel and PHP is this app running, and which ecosystem packages are installed?"
- "Show me the database schema for the users and orders tables"
- "Run a query to find all users who have not placed an order in the last 90 days"
- "What was the last error logged by this application and what file did it occur in?"
- "Search the Laravel 12.x docs for how to use Eloquent model observers"
- "Read the last 20 log entries and summarize any recurring errors"

Troubleshooting Boost

php artisan boost:mcp fails with 'Class not found' error

Ensure you ran 'composer require laravel/boost --dev' and that composer autoload is up to date: run 'composer dump-autoload'. Also confirm Laravel Boost is compatible with your Laravel version (requires 10.x+).

AI agent is not using Laravel conventions despite Boost being installed

Run 'php artisan boost:install' again and verify that CLAUDE.md or AGENTS.md was generated in your project root — these files are loaded by the AI agent upfront. Also check that the MCP server is registered and the laravel-boost entry appears in your client's active server list.

boost:update does not include a newly installed package

Run 'php artisan boost:update --discover' to scan for newly installed Composer packages and offer to publish their Boost guidelines and skills. Without --discover, only already-published resources are updated.

Frequently Asked Questions about Boost

What is Boost?

Boost is a Model Context Protocol (MCP) server that laravel-focused mcp server for augmenting your ai powered local development experience. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Boost?

Follow the installation instructions on the Boost GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Boost?

Boost works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Boost free to use?

Yes, Boost is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "boost": { "command": "npx", "args": ["-y", "boost"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Boost?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides