The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Laravel MCP Companion listing page.
formerly Laravel Docs MCP Server
⚠️ BETA SOFTWARE - This project is in active development. Features may change and breaking changes may occur.
Laravel MCP Companion is a documentation aggregator and navigator for the Laravel ecosystem. It centralizes and organizes high-quality documentation from across the Laravel ecosystem, making it easily discoverable through your AI assistant.
| Feature | Laravel Boost | Context7 | Laravel MCP Companion |
|---|---|---|---|
| Focus | Code generation | General docs | Laravel documentation |
| Best for | Active development | Any library | Learning & reference |
| Project-aware context | ✅ | ❌ | ❌ |
| Laravel multi-version support (6.x - latest) | ❌ | ❌ | ✅ |
| Laravel service docs (Forge, Vapor, Nova, Envoyer) | ❌ | ❌ | ✅ |
| Learning paths & difficulty levels | ❌ | ❌ | ✅ |
| "I need X" documentation finder | ❌ | ❌ | ✅ |
| Curated Laravel package recommendations | ❌ | ❌ | ✅ |
| Offline documentation access | ❌ | ❌ | ✅ |
| TOON format output (30-60% fewer tokens) | ❌ | ❌ | ✅ |
| General documentation (non-Laravel) | ❌ | ✅ | ❌ |
Use Boost when writing code and you need project-aware context. Use Context7 for non-Laravel libraries. Use Companion when learning, researching, or need Laravel documentation reference.
Listed in the official MCP Registry
as io.github.brianirish/laravel-mcp-companion — clients with registry
support can install it from there directly. Manual setup:
Open Claude Desktop Settings
Add to your configuration file:
Restart Claude Desktop for changes to take effect
Config file locations:
%APPDATA%\Claude\claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.jsonUse the claude mcp add command:
The --scope project option creates a .mcp.json file in your project root that can be committed to version control.
These options can be used with the Docker command. For example:
| Option | Description | Default |
|---|---|---|
--version VERSION | Laravel version (e.g., "11.x", "12.x") | Latest |
--docs-path PATH | Documentation directory | ./docs |
--log-level LEVEL | DEBUG, INFO, WARNING, ERROR, CRITICAL | INFO |
--update-docs | Update documentation on startup | false |
--force-update | Force documentation update | false |
--transform-mode MODE | Tool exposure mode: search, code, or none (env: TRANSFORM_MODE) | search |
--host HOST | Interface to bind in HTTP mode (env: HOST) | 127.0.0.1 (0.0.0.0 in Docker) |
--cors-origin ORIGIN | Browser origin allowed to call the HTTP transport, repeatable (env: CORS_ORIGINS) | none (CORS off) |
--allowed-host HOST | Additional Host header accepted in HTTP mode, repeatable (env: ALLOWED_HOSTS) | localhost, 127.0.0.1, ::1 |
--auth-jwks-uri URI | JWKS endpoint enabling bearer-token auth in HTTP mode (env: AUTH_JWKS_URI) | none (auth off) |
--auth-issuer ISSUER | Required token issuer, with --auth-jwks-uri (env: AUTH_ISSUER) | none |
--auth-audience AUD | Required token audience, with --auth-jwks-uri (env: AUTH_AUDIENCE) | none |
--auth-required-scope SCOPE | Scope every token must carry, repeatable (env: AUTH_REQUIRED_SCOPES) | none |
--rate-limit RPS | MCP requests/second accepted in HTTP mode; operational endpoints are never limited (env: RATE_LIMIT_RPS) | none (no limiting) |
--rate-limit-burst N | Token-bucket burst capacity (env: RATE_LIMIT_BURST) | max(10, 2×RPS) |
Documentation ships inside the image, and a new image is published whenever the
documentation is refreshed, so :latest carries the most recently published
snapshot. The catch is that docker run reuses the copy you already have —
once you've pulled the image, you keep running it until you pull again. Refresh
whenever you like:
Or add --pull=always to your MCP config so every start checks for a newer image.
It costs a moment of startup time and needs a working connection, so it's opt-in
rather than the default:
You don't have to track this yourself. The server tells your assistant how old the documentation is for the Laravel version it's serving, so if you ask about something newer than that snapshot it will say so and offer to refresh instead of answering from stale pages. You can also just ask — "how current are your Laravel docs?"
To update in place without pulling a new image, --update-docs fetches fresh
documentation for the selected Laravel version during startup. Documentation for
Forge, Vapor, Nova, Envoyer and community packages refreshes separately, through the
update_external_laravel_docs tool your assistant can call.
With --rm the download is discarded when the container exits, so it repeats on
every start. A named volume keeps it — but note the trade-off:
A volume overrides the image's documentation. Once populated it masks
/app/docs, so pulling a newer image no longer updates what the server reads — the volume becomes your source of truth and--update-docsbecomes the way you refresh it. Use a volume when you want to control updates explicitly; stick to plaindocker pullif you'd rather the image stay in charge.
By default the server no longer lists all of its tools. Instead it exposes a compact, search-first interface that keeps your AI client's context window lean:
search (default) — Exposes search_tools (BM25 relevance search over the tool catalog) and call_tool (proxy to invoke any underlying tool). search_laravel_docs stays pinned and directly callable.code (experimental) — Exposes Code Mode meta-tools (tags, search, get_schema, execute) that let the client discover tools and orchestrate them with sandboxed Python. Requires the fastmcp[code-mode] extra (included in requirements.txt). Avoid exposing this publicly over HTTP — execute is a code execution endpoint.none — Pre-0.9 behavior: every tool listed directly. Use this if your MCP client doesn't handle the synthetic search tools well.Authentication is off by default. Anyone who can reach the HTTP port can call every tool, so treat network exposure as granting full access to the documentation tree — or turn on bearer-token auth:
The server is a resource server: it validates tokens, it never issues them.
Issuer and audience are mandatory with --auth-jwks-uri — accepting any
issuer's tokens, or tokens minted for another service, would be authentication
theater. Unauthenticated requests get 401 with a WWW-Authenticate header
(RFC 9728), and misconfiguration fails at startup rather than at request time.
Auth applies to the HTTP transport only; stdio's access control is the process
boundary.
Defaults are conservative:
127.0.0.1 outside Docker. Inside the container it binds 0.0.0.0, where the container boundary and explicit -p publishing are the access control.--cors-origin. Wildcard origins are rejected; credentials are never allowed cross-origin.Only localhost, 127.0.0.1, and ::1 are accepted as Host values out of the box. If you bind a non-loopback interface you must add the hostname clients actually use, or every request is rejected with 421:
Requests with an unrecognized Host get 421; requests from an unlisted Origin get 403. Passing --allowed-host or --cors-origin on the command line replaces the corresponding environment variable rather than adding to it. If you expose this beyond localhost, put an authenticating reverse proxy in front of it. Avoid --transform-mode code over HTTP entirely — execute is a code execution endpoint.
Off by default. --rate-limit 20 caps MCP requests — tool calls,
searches, the protocol surface — at 20/second with a single global token
bucket: a total throughput cap, not per-client fairness (without auth there
is no reliable client identity to key on). The operational endpoints
(/healthz, /metrics, /.well-known/...) are deliberately outside the
limit: throttling a load balancer's health checks marks healthy instances
down, and those handlers are trivial reads. The limit counts every MCP
request including the initialize handshake, which is why the burst default
stays at max(10, 2×RPS); keep the burst comfortably above your clients'
handshake size if you lower it. Throttled requests receive a clean MCP error
and succeed again once the bucket refills.
GET /healthz — liveness/readiness JSON, always public (load balancers
can't do OAuth). ok and degraded both return 200 — degraded means the
documentation copy is stale and a newer image should be pulled; 503 means no
documentation is readable and traffic should not be routed here.GET /metrics — Prometheus text format: per-tool call counters, a
latency histogram, request counts, uptime, and documentation age. Public on
unauthenticated deployments; requires a valid bearer token whenever auth is
configured.sources
filter to narrow itstructuredContent with real
schemas alongside their TOON textserver.json metadata, .well-known discovery in HTTP mode, and
automated publishing on release tagsGET /healthz for load balancers and a Prometheus
GET /metrics with per-tool counters, latency histogram, and docs ageFor detailed roadmap information, see ROADMAP.md.
Laravel MCP Companion uses TOON (Token-Oriented Object Notation) for structured output, saving 30-60% on tokens compared to JSON/markdown.
When you search for packages or list documentation, you get efficient structured data:
Compare to the equivalent JSON (nearly 2x the tokens):
This application features an intelligent auto-discovery system that automatically finds and indexes Laravel documentation. Every day, it:
The MCP Inspector provides a visual UI for testing MCP servers.
Use the Inspector to:
laravel:// and laravel-external:// resourcesThis project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! See CONTRIBUTING.md for guidelines.