Tool Reference

Complete reference for the three Flowpatrol security tools.

Overview

Flowpatrol provides three security tools, available through the dashboard, via MCP in your AI editor, the CLI in your terminal, or the GitHub Action in your CI pipeline. Each tool serves a different purpose in your security workflow:

ToolPurposeCostTime
flowpatrol_probeQuick surface-level security check1 credit~10 seconds
flowpatrol_scanFull security test of your running app5 credits2–5 minutes
flowpatrol_reportRetrieve and filter scan resultsFreeInstant

Typical workflow

  1. Probe first — run a quick probe to get a fast read on the security surface. This catches low-hanging fruit like leaked API keys, missing headers, and open paths.

  2. Scan if needed — if the probe finds issues (or you want a deep test), run a full scan. This tests auth flows, access control, and business logic.

  3. Review reports — view results in the dashboard or pull them via MCP. Filter by severity and get fix suggestions without re-running a scan.

How to access these tools

Every tool works the same way regardless of how you call it. Pick the interface that fits your workflow:

InterfaceBest forSetup guide
DashboardManual scans, browsing results, team managementQuick Start
MCPInline checks while coding in your AI editorMCP Integration
CLITerminal workflows, scripting, local automationCLI Setup
GitHub ActionAutomated PR checks and CI/CD pipelinesGitHub Action