Search Laravel Docs with the 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.
Log in to leave a comment.
Scaffold a custom MCP server with Claude to give it direct access to your internal APIs, dashboards, and microservices.
Use --strict-mcp-config to restrict Claude Code to only the MCP servers you explicitly provide, ignoring all other sources.
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.