Skip to main content
GET
/
mcp-hub
/
dashboard-stats
Get MCP Hub Scan Statistics
curl --request GET \
  --url https://api.enkryptai.com/mcp-hub/dashboard-stats \
  --header 'apikey: <api-key>'
{
  "total_servers_scanned": 25268,
  "mcps_scanned_this_month": 4,
  "servers_with_vulnerabilities": 18472,
  "total_tools_scanned": 268213,
  "avg_tools_per_server": 10.6,
  "total_vulnerabilities": 143524,
  "avg_vulnerabilities_per_server": 5.7,
  "critical_risk_rate": 7,
  "servers_with_critical_issues": 1834,
  "vulnerabilities_by_severity": {
    "critical": {
      "count": 7855,
      "percentage": 5.5
    },
    "high": {
      "count": 7855,
      "percentage": 5.5
    },
    "medium": {
      "count": 7855,
      "percentage": 5.5
    },
    "low": {
      "count": 7855,
      "percentage": 5.5
    }
  },
  "top_vulnerability_types": [
    {
      "type": "prompt_injection",
      "count": 30070,
      "percentage": 21
    }
  ]
}

Authorizations

apikey
string
header
required

Response

Aggregate scan statistics

Aggregate MCP Hub scan statistics across all scanned servers.

total_servers_scanned
integer
Example:

25268

mcps_scanned_this_month
integer
Example:

4

servers_with_vulnerabilities
integer
Example:

18472

total_tools_scanned
integer
Example:

268213

avg_tools_per_server
number
Example:

10.6

total_vulnerabilities
integer
Example:

143524

avg_vulnerabilities_per_server
number
Example:

5.7

critical_risk_rate
number

Percentage of scanned servers with at least one critical-severity vulnerability.

Example:

7

servers_with_critical_issues
integer
Example:

1834

vulnerabilities_by_severity
object

Vulnerability counts grouped by severity.

top_vulnerability_types
MCPHubVulnerabilityTypeStat ยท object[]

Vulnerability counts grouped by detector/type, ordered by count descending.