Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,25 @@ Boost works with many popular IDEs and AI agents out of the box. If your coding
- `Laravel\Boost\Contracts\Agent` - Adds support for AI guidelines.
- `Laravel\Boost\Contracts\McpClient` - Adds support for MCP.

## Using containers (DDEV example)
You can add this configuration to your `mcp.json` configuration file. This will use the boost:mcp running in your container.
```json
{
"servers": {
"laravel-boost": {
"type": "stdio",
"command": "ddev",
"args": [
"exec",
"php",
"artisan",
"boost:mcp"
]
}
}
}
```

### Writing the Code Environment

```php
Expand Down