Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Laravel Plugin Discovery

  • 4.6k installs
  • 238k repo stars
  • Updated August 5, 2026
  • affaan-m/everything-claude-code

Given a Laravel feature need (e.g., auth, permissions, admin), identify maintained packages matching project Laravel/PHP versions with health assessment.

About

Laravel Plugin Discovery enables developers to find and assess Laravel packages through the LaraPlugins.io MCP server without requiring API keys. Developers use it when selecting dependencies for features like authentication, permissions, or admin panels, needing to verify package health, maintenance status, and Laravel/PHP version compatibility before integration. The skill provides two core workflows: searching packages by keyword with filters for health score (Healthy/Medium/Unhealthy), Laravel versions 5-13, PHP versions 7.4-8.5, and vendor reputation; and retrieving detailed package metrics including health indicators, last activity dates, version history, and risk scores. Best practices emphasize filtering by health status for production use, matching target Laravel versions, checking vendor reputation, and reviewing comprehensive details before recommending packages to teams. Search packages by keyword, health band (Healthy/Medium/Unhealthy), Laravel version, PHP version, and vendor name via SearchPluginTool

  • Search packages by keyword, health band (Healthy/Medium/Unhealthy), Laravel version, PHP version, and vendor name via Se
  • Fetch detailed metrics, readme content, version history, and risk scores using GetPluginDetailsTool with full Composer p
  • Filter by Laravel versions 5-13 and PHP versions 7.4-8.5 to ensure target project compatibility
  • No API key required - LaraPlugins MCP server is free for Laravel community; configure via ~/.claude.json mcpServers
  • Assess package health through last activity date, vendor reputation score, and maintenance indicators before adding to p

Laravel Plugin Discovery by the numbers

  • 4,564 all-time installs (skills.sh)
  • +255 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #149 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

laravel-plugin-discovery capabilities & compatibility

Capabilities
search packages by keyword with multi filter sup · assess package health and maintenance status · verify laravel/php version compatibility · review vendor reputation and risk indicators · retrieve version history and detailed package me
Platforms
macOS · Windows · Linux · WSL
Runs
Remote server
Pricing
Free
From the docs

What laravel-plugin-discovery says it does

Find, evaluate, and choose healthy Laravel packages using the LaraPlugins.io MCP server.
laravel-plugin-discovery.md header
npx skills add https://github.com/affaan-m/everything-claude-code --skill laravel-plugin-discovery

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4.6k
repo stars238k
Security audit2 / 3 scanners passed
Last updatedAugust 5, 2026
Repositoryaffaan-m/everything-claude-code

What it does

Discover, evaluate, and choose healthy Laravel packages by searching LaraPlugins.io MCP with health scores and version compatibility filters.

Who is it for?

Laravel backend developers evaluating third-party packages for production projects; teams standardizing on healthy dependencies; developers verifying package maintenance before adoption.

Skip if: Python/Node.js/Go ecosystems; package comparison across non-Laravel frameworks; real-time package monitoring or CI/CD automation.

When should I use this skill?

Developer asks 'what package for [feature]', 'is [package] still maintained', needs Laravel/PHP compatibility check, or wants to assess package health before adding dependency.

What you get

Developer selects healthy, actively-maintained, version-compatible Laravel packages with confidence in vendor reputation and risk assessment.

  • Ranked Laravel package shortlist
  • Compatibility and health assessment notes

By the numbers

  • Supports Laravel versions 5 through 13
  • Supports PHP versions 7.4 through 8.5
  • Two primary MCP tools: SearchPluginTool and GetPluginDetailsTool

Files

SKILL.mdMarkdownGitHub ↗

Laravel Plugin Discovery

Find, evaluate, and choose healthy Laravel packages using the LaraPlugins.io MCP server.

When to Use

  • User wants to find Laravel packages for a specific feature (e.g. "auth", "permissions", "admin panel")
  • User asks "what package should I use for..." or "is there a Laravel package for..."
  • User wants to check if a package is actively maintained
  • User needs to verify Laravel version compatibility
  • User wants to assess package health before adding to a project

MCP Requirement

LaraPlugins MCP server must be configured. Add to your ~/.claude.json mcpServers:

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

No API key required — the server is free for the Laravel community.

MCP Tools

The LaraPlugins MCP provides two primary tools:

SearchPluginTool

Search packages by keyword, health score, vendor, and version compatibility.

Parameters:

  • text_search (string, optional): Keyword to search (e.g. "permission", "admin", "api")
  • health_score (string, optional): Filter by health band — Healthy, Medium, Unhealthy, or Unrated
  • laravel_compatibility (string, optional): Filter by Laravel version — "5", "6", "7", "8", "9", "10", "11", "12", "13"
  • php_compatibility (string, optional): Filter by PHP version — "7.4", "8.0", "8.1", "8.2", "8.3", "8.4", "8.5"
  • vendor_filter (string, optional): Filter by vendor name (e.g. "spatie", "laravel")
  • page (number, optional): Page number for pagination

GetPluginDetailsTool

Fetch detailed metrics, readme content, and version history for a specific package.

Parameters:

  • package (string, required): Full Composer package name (e.g. "spatie/laravel-permission")
  • include_versions (boolean, optional): Include version history in response

---

How It Works

Finding Packages

When the user wants to discover packages for a feature:

1. Use SearchPluginTool with relevant keywords 2. Apply filters for health score, Laravel version, or PHP version 3. Review the results with package names, descriptions, and health indicators

Evaluating Packages

When the user wants to assess a specific package:

1. Use GetPluginDetailsTool with the package name 2. Review health score, last updated date, Laravel version support 3. Check vendor reputation and risk indicators

Checking Compatibility

When the user needs Laravel or PHP version compatibility:

1. Search with laravel_compatibility filter set to their version 2. Or get details on a specific package to see its supported versions

---

Examples

Example: Find Authentication Packages

SearchPluginTool({
  text_search: "authentication",
  health_score: "Healthy"
})

Returns packages matching "authentication" with healthy status:

  • spatie/laravel-permission
  • laravel/breeze
  • laravel/passport
  • etc.

Example: Find Laravel 12 Compatible Packages

SearchPluginTool({
  text_search: "admin panel",
  laravel_compatibility: "12"
})

Returns packages compatible with Laravel 12.

Example: Get Package Details

GetPluginDetailsTool({
  package: "spatie/laravel-permission",
  include_versions: true
})

Returns:

  • Health score and last activity
  • Laravel/PHP version support
  • Vendor reputation (risk score)
  • Version history
  • Brief description

Example: Find Packages by Vendor

SearchPluginTool({
  vendor_filter: "spatie",
  health_score: "Healthy"
})

Returns all healthy packages from vendor "spatie".

---

Filtering Best Practices

By Health Score

Health BandMeaning
HealthyActive maintenance, recent updates
MediumOccasional updates, may need attention
UnhealthyAbandoned or infrequently maintained
UnratedNot yet assessed

Recommendation: Prefer Healthy packages for production applications.

By Laravel Version

VersionNotes
13Latest Laravel
12Current stable
11Still widely used
10Legacy but common
5-9Deprecated

Recommendation: Match the target project's Laravel version.

Combining Filters

// Find healthy, Laravel 12 compatible packages for permissions
SearchPluginTool({
  text_search: "permission",
  health_score: "Healthy",
  laravel_compatibility: "12"
})

---

Response Interpretation

Search Results

Each result includes:

  • Package name (e.g. spatie/laravel-permission)
  • Brief description
  • Health status indicator
  • Laravel version support badges

Package Details

The detailed response includes:

  • Health Score: Numeric or band indicator
  • Last Activity: When the package was last updated
  • Laravel Support: Version compatibility matrix
  • PHP Support: PHP version compatibility
  • Risk Score: Vendor trust indicators
  • Version History: Recent release timeline

---

Common Use Cases

ScenarioRecommended Approach
"What package for auth?"Search "auth" with healthy filter
"Is spatie/package still maintained?"Get details, check health score
"Need Laravel 12 packages"Search with laravel_compatibility: "12"
"Find admin panel packages"Search "admin panel", review results
"Check vendor reputation"Search by vendor, check details

---

Best Practices

1. Always filter by health — Use health_score: "Healthy" for production projects 2. Match Laravel version — Always check laravel_compatibility matches the target project 3. Check vendor reputation — Prefer packages from known vendors (spatie, laravel, etc.) 4. Review before recommending — Use GetPluginDetailsTool for a comprehensive assessment 5. No API key needed — The MCP is free, no authentication required

---

Related Skills

  • laravel-patterns — Laravel architecture and patterns
  • laravel-tdd — Test-driven development for Laravel
  • laravel-security — Laravel security best practices
  • documentation-lookup — General library documentation lookup (Context7)

Related skills

Forks & variants (1)

Laravel Plugin Discovery has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.

How it compares

Narrower than general package managers; focused on Laravel ecosystem health assessment rather than installation or version management.

FAQ

Do I need an API key to use LaraPlugins MCP?

No. LaraPlugins.io MCP server is free for the Laravel community. Configure it in ~/.claude.json mcpServers with type 'http' and url 'https://laraplugins.io/mcp/plugins'.

What does 'Health Score' mean and which should I choose?

Health bands are Healthy (active maintenance, recent updates), Medium (occasional updates), Unhealthy (abandoned/infrequent), Unrated (not assessed). Prefer Healthy for production applications.

How do I ensure a package works with my Laravel version?

Use SearchPluginTool with laravel_compatibility filter (e.g., '12', '11') or use GetPluginDetailsTool on a specific package to review its Laravel/PHP version support matrix.

Is Laravel Plugin Discovery safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Backend & APIsbackendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.