INDIVIDUAL MCP TOOL
get_security_summary
Returns a compact, pre-aggregated security posture summary for the configured organization and group: project count, scans run, lines/files scanned, total vulnerabilities broken down by status (True Positive / False Positive / Unverified / Not Exploitable), true/false-positive rates, a severity breakdown (Critical/High/Medium/Low), and a per-scanner breakdown — for both the current state and 30 days ago.
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.aquilax]
url = "https://mcp.aquilax.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"aquilax": {
"type": "http",
"url": "https://mcp.aquilax.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: aquilax
Remote MCP URL: https://mcp.aquilax.ai/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"aquilax": {
"url": "https://mcp.aquilax.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"aquilax": {
"type": "http",
"url": "https://mcp.aquilax.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "aquilax",
"transport": "streamable-http",
"url": "https://mcp.aquilax.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_organizations— Lists the organizations the authenticated user belongs to (names and IDs).list_groups— Lists the groups within an organization (names and IDs).start_scan— Triggers a full security scan on a Git repository using the Aquilax static analysis engine.get_scan_status— Returns the current status and progress of a repository scan previously started with start_scan.scan_code— Scans a code snippet or file content for security vulnerabilities using Aquilax static analysis.list_vulnerabilities— Returns all security vulnerability findings stored in Aquilax for an organization and group.fix_vulnerability— Generates a secure, minimal replacement for a known vulnerable code snippet using Aquilax AI.get_scan_report— Returns a compact report for a SINGLE scan: repository and commit metadata, lines/files scanned, execution stats, a short "about the codebase" summary when available, and the scan's findings aggregated by severity, scanner, status, and CWE (False Positive and Not Exploitable findings excluded).