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

Prowler Mcp

  • 66 installs
  • 14.5k repo stars
  • Updated August 4, 2026
  • prowler-cloud/prowler

Helps with ai & agent building tasks.

About

prowler-mcp is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • prowler-mcp
  • AI & Agent Building
  • AI-coding skill

Prowler Mcp by the numbers

  • 66 all-time installs (skills.sh)
  • Ranked #5,968 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/prowler-cloud/prowler --skill prowler-mcp

Add your badge

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

Listed on Skillselion
Installs66
repo stars14.5k
Last updatedAugust 4, 2026
Repositoryprowler-cloud/prowler

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Overview

The Prowler MCP Server uses three sub-servers with prefixed namespacing:

Sub-ServerPrefixAuthPurpose
Prowler Appprowler_app_*RequiredCloud management tools
Prowler Hubprowler_hub_*NoSecurity checks catalog
Prowler Docsprowler_docs_*NoDocumentation search

For complete architecture, patterns, and examples, see docs/developer-guide/mcp-server.mdx.

---

Critical Rules (Prowler App Only)

Tool Implementation

  • ALWAYS: Extend BaseTool (auto-registered via tool_loader.py, only public methods from the class are exposed as a tool)
  • NEVER: Manually register BaseTool subclasses
  • NEVER: Import tools directly in server.py

Models

  • ALWAYS: Use MinimalSerializerMixin for responses
  • ALWAYS: Implement from_api_response() factory method
  • ALWAYS: Use two-tier models (Simplified for lists, Detailed for single items)
  • NEVER: Return raw API responses

API Client

  • ALWAYS: Use self.api_client singleton
  • ALWAYS: Use build_filter_params() for query parameters
  • NEVER: Create new httpx clients

---

Hub/Docs Tools

Use @mcp.tool() decorator directly—no BaseTool or models required.

---

Quick Reference: New Prowler App Tool

1. Create tool class in prowler_app/tools/ extending BaseTool 2. Create models in prowler_app/models/ using MinimalSerializerMixin 3. Tools auto-register via tool_loader.py

---

QA Checklist (Prowler App)

  • [ ] Tool docstrings describe LLM-relevant behavior
  • [ ] Models use MinimalSerializerMixin
  • [ ] API responses transformed to simplified models
  • [ ] Error handling returns {"error": str, "status": "failed"}
  • [ ] Parameters use Field() with descriptions
  • [ ] No hardcoded secrets

---

Resources

  • Full Guide: docs/developer-guide/mcp-server.mdx
  • Templates: See assets/ for tool and model templates

Related skills

This week in AI coding

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

unsubscribe anytime.