Connects Claude to 1,562 structured certification exam blueprints across 217 certifying bodies. Exposes four tools: search_exams for keyword lookup with optional vendor filtering, get_exam_blueprint to pull full domain breakdowns with scoring and prerequisites, compare_exams to diff 2-8 exams side by side on questions, duration, price, and validity, and list_certifying_bodies to enumerate all vendors. Works offline from local JSON or fetches from GitHub when installed standalone. No API key required. Useful when you need agents to answer questions like "what does the AWS SAA exam cover" or "compare CompTIA Security+ to CISSP" without hallucinating exam details. The underlying dataset includes domain weights, passing scores, retake policies, and renewal requirements sourced from official exam guides.
claude mcp add --transport http cert-atlas https://mcp.quizforge.ai/mcpRun in your terminal. Add --scope user to make it available in every project.
Review the command, arguments, and environment values before installing — MCP servers run with your local permissions.
Verified live against the running server on Jun 10, 2026.
search_examsSearch 1,580 certification & professional exams by name, code, certifying body, or vendor. Call this whenever a user mentions a certification or exam — e.g. AWS Solutions Architect, CISSP, CompTIA Security+, PMP, CCNA, NCLEX, CFA, Azure AZ-104, CKA — or asks what certs a body...4 paramsSearch 1,580 certification & professional exams by name, code, certifying body, or vendor. Call this whenever a user mentions a certification or exam — e.g. AWS Solutions Architect, CISSP, CompTIA Security+, PMP, CCNA, NCLEX, CFA, Azure AZ-104, CKA — or asks what certs a body...
limitintegerquerystringvendor_slugstringcertifying_bodystringget_exam_blueprintGet the full published blueprint for ONE certification exam: domain/objective breakdown with topic weights, passing score, question count & types, duration, price, prerequisites, retake & renewal policy, languages, and the official source URL. Call this for 'what's on the X ex...1 paramsGet the full published blueprint for ONE certification exam: domain/objective breakdown with topic weights, passing score, question count & types, duration, price, prerequisites, retake & renewal policy, languages, and the official source URL. Call this for 'what's on the X ex...
exam*stringcompare_examsCompare 2–8 certification exams side by side — price, duration, passing score, question count, and domain count. Call for 'X vs Y', 'which is harder/cheaper', 'easiest cloud cert', 'CCNA vs Network+'. Accepts exam ids, codes, or names; each row links a free practice exam.1 paramsCompare 2–8 certification exams side by side — price, duration, passing score, question count, and domain count. Call for 'X vs Y', 'which is harder/cheaper', 'easiest cloud cert', 'CCNA vs Network+'. Accepts exam ids, codes, or names; each row links a free practice exam.
exams*arraylist_certifying_bodiesList the 222 certifying bodies / vendors covered by Cert Atlas with exam counts. Call for 'what certification providers/vendors are covered', 'how many AWS/Microsoft/Cisco certs'. Optionally filter by a substring.1 paramsList the 222 certifying bodies / vendors covered by Cert Atlas with exam counts. Call for 'what certification providers/vendors are covered', 'how many AWS/Microsoft/Cisco certs'. Optionally filter by a substring.
containsstringThe open index of certification exam blueprints.
1,562 exams. 217 certifying bodies. Structured, machine-readable JSON sourced from official exam guides and certification pages.
🔎 Browse: atlas.quizforge.ai · 📦 Use: data/index.json · 📋 Data Package: datapackage.json · 🤖 For LLMs: llms.txt
Whether you're building a study app, planning your next certification, or researching exam requirements -- this is the most complete open dataset of exam blueprints available.
Every exam file includes the structural blueprint published by the certifying body:
No proprietary questions. No scraped content. Just the publicly available exam structure, consolidated and normalized.
Browse by vendor:
data/
aws/
aws-cloud-practitioner-clf-c02.json
aws-solutions-architect-associate-saa-c03.json
...
microsoft/
microsoft-az-104.json
microsoft-az-900.json
...
comptia/
comptia-security-plus-sy0-701.json
comptia-a-plus-core1-220-1101.json
...
Or use the master index:
# All exams
cat data/index.json | jq '.exams | length'
# 1562
# All AWS exams
cat data/index.json | jq '[.exams[] | select(.certifying_body == "AWS")]'
# Exams with 4+ domains
cat data/index.json | jq '[.exams[] | select(.domains >= 4)]'
| Certifying Body | Exams |
|---|---|
| DMV / State Driver Licensing | 51 |
| Microsoft | 45 |
| College Board | 44 |
| DSST | 38 |
| CLEP | 34 |
| Salesforce | 32 |
| NCEES | 29 |
| ServiceNow | 27 |
| FINRA | 26 |
| SAP | 20 |
| AAPC | 20 |
| Oracle | 19 |
| CompTIA | 16 |
| Google Cloud | 16 |
| AWS | 15 |
| PeopleCert (AXELOS) | 15 |
| ...and 201 more |
Full vendor directory: data/vendors.json
Data completeness across all 1,562 exams:
| Field | Coverage |
|---|---|
| Domain breakdowns | 95% (1,477) |
| Passing score | 73% (1,132) |
| Duration | 82% (1,279) |
| Pricing | 87% (1,357) |
| Sample questions | not included (see below) |
Each exam file follows this structure:
{
"exam_id": "comptia-security-plus-sy0-701",
"exam_name": "CompTIA Security+",
"exam_code": "SY0-701",
"certifying_body": "CompTIA",
"source_url": "https://www.comptia.org/certifications/security",
// Exam logistics
"passing_score": 750,
"passing_score_scale": "100-900",
"total_questions": 90,
"duration_minutes": 90,
"exam_price_usd": 404.00,
"question_types": ["Multiple Choice", "Performance-Based"],
// The blueprint
"domains": [
{
"id": "1.0",
"name": "General security concepts",
"weight_percent": 12.0,
"objectives": [
{
"id": "1.1",
"title": "Security controls",
"sub_objectives": ["comparing technical, preventive, ..."]
}
]
}
],
// Registration and policies
"prerequisites": [...],
"retake_policy": { "waiting_period_days": 14, ... },
"testing_centers": [...],
"online_proctoring_available": true,
"certification_validity_years": 3,
"renewal_required": true,
"available_languages": ["English", "Japanese", ...],
// Resources
"official_objectives_url": "https://...",
"official_study_resources": [...],
// Aliases for lookup
"aliases": ["security+", "sy0-701", "sec+", ...],
// Practice
"practice_url": "https://quizforge.ai/tests/comptia-security-plus-sy0-701"
}
Building a study app? Use data/index.json to list exams and domains to build topic-based study plans.
Comparing certifications? Pull duration_minutes, exam_price_usd, total_questions, and passing_score across vendors.
Tracking your certification path? Use prerequisites to map out dependencies between exams.
Researching exam difficulty? Cross-reference passing_score, total_questions, and duration_minutes.
Grounding an AI assistant or agent? Cert Atlas is clean, factual, source-linked structured data — ideal for RAG / grounding so an LLM can accurately answer "what does the AWS Solutions Architect exam cover?", "what are the CISSP prerequisites?", or "how is CompTIA Security+ weighted by domain?" The site ships an llms.txt manifest, and each index entry carries a practice_url to a matching practice exam.
Want agents to query Cert Atlas directly, in context? The mcp/ directory ships a Model Context Protocol server — cert-atlas-mcp — that exposes the dataset to Claude, Cursor, and any MCP client. Read-only, no API key.
| Tool | What it does |
|---|---|
search_exams | Keyword search across all 1,562 blueprints, optional body/vendor filter |
get_exam_blueprint | Full blueprint for one exam: domains + weights, scoring, prerequisites, renewal |
compare_exams | Compare 2–8 exams side by side (questions, duration, passing score, price, validity) |
list_certifying_bodies | All 217 certifying bodies with exam counts |
cd mcp && npm install && npm run build
It reads the local data/ JSON when run from this repo, or fetches the published dataset from GitHub when installed standalone — so it's always in sync. See mcp/README.md for setup.
Each blueprint was sourced from the certifying body's official exam guide, certification page, or published PDF. The source_url field in every exam file links to the original source. No third-party question banks or proprietary content were used.
Data was collected and structured by QuizForge, a certification exam prep platform.
Found an outdated exam or missing certification? Contributions welcome.
source_url.Please include the official source URL for any additions or changes.
This dataset is released under the MIT License. The exam blueprints themselves are factual information published by their respective certifying bodies. This project consolidates and structures that information for programmatic use.
atlas.quizforge.ai -- searchable, rendered exam blueprints with domain breakdowns and study resources.
Maintained by QuizForge -- free certification practice exams for 1,500+ exams.
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp
io.github.sarahpark/google-search-console