Skip to main content

Prowler MCP Server

Prowler MCP Server brings the entire Prowler ecosystem to AI assistants through the Model Context Protocol (MCP). It enables seamless integration with AI tools like Claude Desktop, Cursor, and other MCP clients, allowing interaction with Prowler's security capabilities through natural language.

Preview Feature: This MCP server is currently under active development. Features and functionality may change. We welcome your feedback—please report any issues on GitHub or join our Slack community.

Key Capabilities

Prowler Cloud, Prowler Private Cloud & Prowler Local Server

Full access to your Prowler data (Prowler Cloud, Prowler Private Cloud, or Prowler Local Server) for:

  • Findings Analysis: Query, filter, and analyze security findings across all your cloud environments
  • Finding Groups Analysis: Triage findings grouped by check ID and drill down into affected resources
  • Provider Management: Create, configure, and manage your configured Prowler providers (AWS, Azure, GCP, etc.)
  • Scan Orchestration: Trigger on-demand scans and schedule recurring security assessments
  • Resource Inventory: Search and view detailed information about your audited resources
  • Muting Management: Create and manage muting rules to suppress non-critical findings
  • Compliance Reporting: View compliance status across frameworks and drill into requirement-level details

Prowler Hub

Access to Prowler's comprehensive security knowledge base:

  • Security Checks Catalog: Browse and search over 1000 security checks across multiple Prowler providers
  • Check Implementation: View the Python code that powers each security check
  • Automated Fixers: Access remediation scripts for common security issues
  • Compliance Frameworks: Explore mappings to over 70 compliance standards and frameworks
  • Provider Services: View available services and checks for all supported Prowler providers

Prowler Documentation

Search and retrieve official Prowler documentation:

  • Intelligent Search: Full-text search across all Prowler documentation
  • Contextual Results: Get relevant documentation pages with highlighted snippets
  • Document Retrieval: Access complete markdown content of any documentation file

Documentation

For comprehensive guides and tutorials, see the official documentation:

Guide Description
Overview Key capabilities, use cases, and deployment options
Installation Docker, PyPI, and source installation
Configuration Configure Claude Desktop, Cursor, and other MCP clients
Tools Reference Complete reference of all tools
Developer Guide How to extend with new tools

Deployment Options

Prowler MCP Server can be used in three ways:

1. Hosted Prowler MCP (Recommended)

Use Prowler's managed MCP server at https://mcp.prowler.com/mcp

  • No installation required
  • Managed and maintained by Prowler team
  • Always up-to-date

Install a reviewed version of mcp-remote in a dedicated local workspace first. Avoid running npx mcp-remote directly because it can download and execute a new package version on each run.

mkdir -p ~/.local/share/prowler-mcp-bridge
cd ~/.local/share/prowler-mcp-bridge
npm init -y
npm install --save-exact mcp-remote@0.1.38
{
  "mcpServers": {
    "prowler": {
      "command": "/absolute/path/to/.local/share/prowler-mcp-bridge/node_modules/.bin/mcp-remote",
      "args": [
        "https://mcp.prowler.com/mcp",
        "--header",
        "Authorization: Bearer pk_YOUR_API_KEY_HERE"
      ]
    }
  }
}

2. Local STDIO Mode

Run the server locally on your machine:

  • Runs as a subprocess of your MCP client
  • Requires Python 3.12+ or Docker

3. Self-Hosted HTTP Mode

Deploy your own remote MCP server:

  • Full control over deployment
  • Requires Python 3.12+ or Docker

See the Installation Guide for complete instructions.

Quick Installation

Docker (Recommended)

docker pull prowlercloud/prowler-mcp

# STDIO mode
docker run --rm -i prowlercloud/prowler-mcp

# HTTP mode
docker run --rm -p 8000:8000 prowlercloud/prowler-mcp --transport http --host 0.0.0.0 --port 8000

From Source

git clone https://github.com/prowler-cloud/prowler.git
cd prowler/mcp_server
uv run prowler-mcp --help

Available Tools

For complete tool descriptions and parameters, see the Tools Reference.

Tool Naming Convention

All tools follow a consistent naming pattern with prefixes:

  • prowler_* - Prowler Cloud, Prowler Private Cloud & Prowler Local Server management tools
  • prowler_hub_* - Prowler Hub catalog and compliance tools
  • prowler_docs_* - Prowler documentation search and retrieval

Architecture

prowler_mcp_server/
├── server.py                 # Main orchestrator (imports sub-servers with prefixes)
├── main.py                   # CLI entry point
├── prowler_hub/              # tools - no authentication required
├── prowler_app/              # tools - authentication required
│   ├── tools/                # Tool implementations
│   ├── models/               # Pydantic models for LLM-optimized responses
│   └── utils/                # API client, authentication, tool loader
└── prowler_documentation/    # tools - no authentication required

Key Features:

  • Modular Design: Three independent sub-servers with prefixed namespacing
  • Auto-Discovery: Prowler tools are automatically discovered and registered
  • LLM Optimization: Response models minimize token usage by excluding empty values
  • Dual Transport: Supports both STDIO (local) and HTTP (remote) modes

Use Cases

The Prowler MCP Server enables powerful workflows through AI assistants:

Security Operations

  • "Show me all critical findings from my AWS production accounts"
  • "Register my new AWS account in Prowler and run a scheduled scan every day"
  • "List all muted findings and detect what findgings are muted by a not enough good reason in relation to their severity"

Security Research

  • "Explain what the S3 bucket public access Prowler check does"
  • "Find all Prowler checks related to encryption at rest"
  • "What is the latest version of the CIS that Prowler is covering per provider?"

Documentation & Learning

  • "How do I configure Prowler to scan my GCP organization?"
  • "What authentication methods does Prowler support for Azure?"
  • "How can I contribute with a new security check to Prowler?"

Requirements

For the hosted Prowler MCP:

  • Prowler Cloud account and API key (only for Prowler features)

For self-hosted STDIO/HTTP Mode:

  • Python 3.12+ or Docker
  • Network access to:
    • https://hub.prowler.com (for Prowler Hub)
    • https://docs.prowler.com (for Prowler Documentation)
    • Prowler Cloud API or Prowler Local Server API (for Prowler features)

No Authentication Required: Prowler Hub and Prowler Documentation features work without authentication. A Prowler API key is only required to access Prowler features (Prowler Cloud, Prowler Private Cloud, or Prowler Local Server).

Configuring MCP Hosts

To configure your MCP host (Claude Code, Cursor, etc.) see the Configuration Guide for detailed setup instructions.

Contributing

For developers looking to extend the MCP server with new tools or features:

Related Products

License

This project follows the repository's main license. See the LICENSE file at the repository root.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

prowler_mcp-0.8.0.tar.gz (61.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

prowler_mcp-0.8.0-py3-none-any.whl (80.3 kB view details)

Uploaded Python 3

File details

Details for the file prowler_mcp-0.8.0.tar.gz.

File metadata

  • Download URL: prowler_mcp-0.8.0.tar.gz
  • Upload date:
  • Size: 61.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for prowler_mcp-0.8.0.tar.gz
Algorithm Hash digest
SHA256 283218d4f10b806a1eac3b36cfc03997e1d13aa8729b949f19a9de3ca068dca7
MD5 375bc49260a8cf3b3aa2a7c48a3febce
BLAKE2b-256 d41641a13190a2d5c0ce579d4e5fa8c9b4f6e55f364bfefbfcd2c630dcfe9920

See more details on using hashes here.

Provenance

The following attestation bundles were made for prowler_mcp-0.8.0.tar.gz:

Publisher: mcp-pypi-release.yml on prowler-cloud/prowler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file prowler_mcp-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: prowler_mcp-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 80.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for prowler_mcp-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7104b13337daeb382c68f372c9fa4fe1ac9d76c47412d343854c6a6ac9348384
MD5 05454f11a77de0b781533006143d8b2b
BLAKE2b-256 7f98cca548533a7faba5c6eb60c69646bb0193d739f5d601b194e60877f39feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for prowler_mcp-0.8.0-py3-none-any.whl:

Publisher: mcp-pypi-release.yml on prowler-cloud/prowler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.9.0

2 files

This release

0.8.0 This release

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page