CyberMax Data
Free US data lookups: ZIP demographics, CISA KEV/EPSS CVEs, domain rank, county spending, recalls.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"cybermax-data": {
"url": "https://data.cybermax-tools.workers.dev/mcp?via=mcp-registry"
}
}
}Remote endpoints
https://data.cybermax-tools.workers.dev/mcp?via=mcp-registrystreamable-httpWhat it can do
Tool inventory
Tools (7)
🟢zip_lookup(zip_code)
Look up a US ZIP code: city, state, county, coordinates, time zone and Census ACS 2020-2024 demographics (population, median age, household and per-capita income, median home value, median gross rent, housing units, owner-occupied share).
Input Schema
{
"type": "object",
"properties": {
"zip_code": {
"type": "string",
"description": "5-digit US ZIP code, e.g. \"10001\"",
"pattern": "^\\d{5}$"
}
},
"required": [
"zip_code"
]
}🟢cve_kev_lookup(cve_id)
Check whether a CVE is in CISA's Known Exploited Vulnerabilities (KEV) catalog; if so return vendor, product, date added, federal due date, known ransomware use, EPSS probability/percentile, CVSS score/severity/vector, CWE and required action.
Input Schema
{
"type": "object",
"properties": {
"cve_id": {
"type": "string",
"description": "CVE identifier, e.g. \"CVE-2021-44228\"",
"pattern": "^[Cc][Vv][Ee]-\\d{4}-\\d{4,7}$"
}
},
"required": [
"cve_id"
]
}🟢latest_kev(limit)
List the CVEs most recently added to CISA's Known Exploited Vulnerabilities catalog, newest first, with EPSS, CVSS and due date in the summary.
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 10,
"description": "How many items (1-50)"
}
}
}🟢domain_rank(domain)
Link-graph rank of a popular website (top 5,000): Common Crawl harmonic-centrality and PageRank rank, hosts crawled, previous-crawl rank, Majestic Million rank and referring subnets. For any other domain use Linkheft on Apify (apify.com/cybermax/domain-authority).
Input Schema
{
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Registrable domain, e.g. \"github.com\""
}
},
"required": [
"domain"
]
}🟢county_federal_spending(county_fips)
FY2025 federal prime contract and grant obligations in a US county (USAspending.gov, place of performance): dollars, per-resident values, population and the county's contract rank in its state.
Input Schema
{
"type": "object",
"properties": {
"county_fips": {
"type": "string",
"description": "5-digit county FIPS code, e.g. \"51059\" (Fairfax County, VA)",
"pattern": "^\\d{5}$"
}
},
"required": [
"county_fips"
]
}🟢vehicle_recall(campaign)
Look up an NHTSA vehicle/equipment recall campaign from the last 12 months: manufacturer, component, units affected, do-not-drive and park-outside flags, summary, risk, remedy and affected make/model/year list.
Input Schema
{
"type": "object",
"properties": {
"campaign": {
"type": "string",
"description": "NHTSA campaign number, e.g. \"26V601000\"",
"pattern": "^\\d\\d[A-Za-z]\\d{6}$"
}
},
"required": [
"campaign"
]
}🟢latest_recalls(limit)
List the newest US vehicle and equipment recalls from NHTSA, newest first, with risk and remedy.
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 10,
"description": "How many items (1-50)"
}
}
}Community
Evidence