$ recombobulate _
home / tips / search-laravel-docs-with-laravel-boost-mcp-server
1

Search Laravel Docs with the Laravel Boost MCP Server

bagwaa @bagwaa · Mar 20, 2026 · MCP Servers
search-laravel-docs-with-laravel-boost-mcp-server

If you're working on a Laravel project, the Laravel Boost MCP server gives Claude access to version-specific documentation search. Install it with:

composer require laravel/boost --dev

Then add the MCP config to .mcp.json:

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

Now Claude can search docs with the search-docs tool:

// Claude will automatically search docs before making changes
// You can also ask directly:
"Search the Livewire docs for wire:sort"

The search returns results specific to your installed package versions — no more outdated docs.

You can also use database-schema to inspect your tables and database-query to run read-only SQL, all without leaving the conversation.

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
0
Build a Custom MCP Server to Expose Your Internal APIs

Scaffold a custom MCP server with Claude to give it direct access to your internal APIs, dashboards, and microservices.

bagwaa @bagwaa · 3 hours ago
0
Lock Down MCP Servers with --strict-mcp-config

Use --strict-mcp-config to restrict Claude Code to only the MCP servers you explicitly provide, ignoring all other sources.

bagwaa @bagwaa · 4 hours ago
0
Use the /mcp Command to Inspect Your MCP Servers

When an MCP server misbehaves, /mcp gives you a live view of every connected server, its status, and the tools it's exposing — right inside your session.

bagwaa @bagwaa · 6 hours ago