mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 21:11:53 +00:00
c7abd77a1c
Co-authored-by: Pepe Fagoaga <pepe@prowler.com>
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)
|