danielpetrica/laraplugins-skills

Laravel Boost skill and guideline for the LaraPlugins MCP server. Provides AI agents with the ability to search, verify health scores, and get curated recommendations for Laravel packages via the LaraPlugins package discovery platform.

Maintainers

Package info

github.com/danielpetrica/Laraplugins-skills

Language:Blade

pkg:composer/danielpetrica/laraplugins-skills

Transparency log

Statistics

Installs: 411

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 8

0.0.1 2026-02-04 12:36 UTC

README

Laravel Boost skill and guideline package for the LaraPlugins MCP server. Provides AI coding agents with the ability to search, verify health scores, and get curated recommendations for Laravel packages.

Requirements

  • PHP 8.2+
  • Laravel Boost (laravel/boost) installed in your project

Installation

composer require danielpetrica/laraplugins-skills --dev

Then run the Boost install command:

php artisan boost:install

During installation, select danielpetrica/laraplugins-skills when prompted for third-party packages. Boost will automatically install both the guideline (always loaded) and the skill (on-demand).

Usage

What gets installed

  • Guideline — loaded upfront by your AI agent, tells it about LaraPlugins and when to activate the skill
  • Skill (package-search-laraplugins) — activated on-demand when searching for packages, checking health, or getting recommendations

MCP Server

The package registers the LaraPlugins MCP server tools:

Tool Description
Plugin Search Search Packagist with filters (vendor, health, Laravel/PHP version, security badge)
Plugin Details Get health score, vendor reputation, downloads, GitHub info for a specific package
Curated Recommendations Get tool recommendations by category (hosting, monitoring, auth, payments, etc.)

If your AI agent or IDE requires manual MCP configuration, add this to your .mcp.json:

{
    "mcpServers": {
        "laraplugins": {
            "type": "streamable-http",
            "url": "https://laraplugins.io/mcp/plugins"
        }
    }
}

How It Works

flowchart LR
    User[User asks for package recommendation] --> AI[AI Agent]
    AI --> Skill[Activates package-search-laraplugins skill]
    Skill --> Search[Plugin Search MCP tool]
    Skill --> Details[Plugin Details MCP tool]
    Skill --> Recommendations[Curated Recommendations MCP tool]
    Search --> Results[Healthy, compatible packages]
    Details --> DeepDive[Vendor reputation, downloads, health]
    Results --> AI
    DeepDive --> AI
    AI --> Response[AI recommends best package with reasoning]
Loading

Links