mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
9 lines
259 B
Python
9 lines
259 B
Python
from fastmcp import FastMCP
|
|
from prowler_mcp_server.prowler_app.utils.tool_loader import load_all_tools
|
|
|
|
# Initialize MCP server
|
|
app_mcp_server = FastMCP("prowler-app")
|
|
|
|
# Auto-discover and load all tools from the tools package
|
|
load_all_tools(app_mcp_server)
|