Cert Atlas
This MCP server provides read-only access to a large index of certification exam blueprints.
search_exams – Keyword search across 1,562 certification exams by name, code, body, or vendor; optional filters (limit, vendor slug, certifying body); returns exam code, body, question/domain counts, and a practice link.
get_exam_blueprint – Retrieve the full published blueprint for a single exam: domain/objective breakdown with weights, passing score, question count/types, duration, price, prerequisites, retake/renewal policies, languages, official source URL, and a practice link.
compare_exams – Side-by-side comparison of 2–8 exams (price, duration, passing score, question count, domain count) using exam ids, codes, or names; includes practice links.
list_certifying_bodies – List all 217 certifying bodies/vendors covered, with exam counts; optional substring filter (e.g., 'aws', 'micro').
Cert Atlas
The open index of certification exam blueprints.
1,673 exams. 223 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.
What's inside
Every exam file includes the structural blueprint published by the certifying body:
Exam domains, objectives, and topic weights
Passing scores, question counts, and time limits
Pricing, registration links, and testing center info
Prerequisites, retake policies, and renewal requirements
Available languages and proctoring options
Official study resources and objective URLs
Reviewed, source-linked editorial guidance where an official source supports it
No proprietary questions or answers. Aggregate topic, difficulty, and item-format metadata may inform reviewed preparation guidance, but question text and explanations never enter this repository.
Related MCP server: fedramp-docs-mcp
Quick start
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'
# 1673
# 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)]'Coverage
Certifying Body | Exams |
ServiceNow | 94 |
DMV / State Driver Licensing | 51 |
Microsoft | 45 |
College Board | 44 |
DSST | 38 |
CLEP | 34 |
Salesforce | 32 |
NCEES | 29 |
FINRA | 26 |
IICRC | 25 |
SAP | 20 |
AAPC | 20 |
Oracle | 19 |
HVAC Licensing | 17 |
State Teacher Certification | 17 |
CompTIA | 16 |
Google Cloud | 16 |
ACCA | 15 |
AWS | 15 |
...and 204 more |
Full vendor directory: data/vendors.json
Data completeness across all 1,673 exams:
Field | Coverage |
Domain breakdowns | 97% (1,629) |
Passing score | 69% (1,150) |
Duration | 80% (1,342) |
Pricing | 84% (1,399) |
Sample questions | not included (see below) |
Schema
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"
}Use cases
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.
MCP server
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 |
| Keyword search across all 1,673 blueprints, optional body/vendor filter |
| Full blueprint for one exam: domains, weights, scoring, prerequisites, reviewed guidance, and sources |
| Compare 2–8 exams side by side (questions, duration, passing score, price, validity) |
| All 223 certifying bodies with exam counts |
cd mcp && npm install && npm run buildIt 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.
How this data was collected
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. Reviewed enrichment can use aggregate topic, difficulty, and format metadata from QuizForge practice records, but the pipeline never reads those records' stems, choices, answers, or explanations into public output.
Data was collected and structured by QuizForge, a certification exam prep platform.
Contributing
Found an outdated exam or missing certification? Contributions welcome.
Update an exam: Edit the JSON file and submit a PR with a link to the updated official source.
Add a new exam: Create a JSON file following the schema above. Include the
source_url.Report an issue: Open an issue with the exam name and what needs correcting.
Please include the official source URL for any additions or changes.
License
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.
Browse online
atlas.quizforge.ai -- searchable, rendered exam blueprints with domain breakdowns and study resources.
Acknowledgments
Maintained by QuizForge -- free certification practice exams.
Available Tools
4 toolscompare_examsAInspect
Compare 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.
| Name | Required | Description | Default |
|---|---|---|---|
| exams | Yes | 2–8 exam ids, codes, or names to compare |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states input flexibility (ids, codes, or names) and output behavior (each row links a free practice exam). It does not mention rate limits, error handling, or any side effects, but as a read-only comparison tool, the transparency is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences pack purpose, usage examples, input details, and output behavior. No wasted words, and the structure is front-loaded with the primary action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description hints at output ('side by side', 'each row links...'). It covers input types, use cases, and a key output feature. Missing details on error handling or return format, but for a simple comparison tool with one parameter, it is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a clear description for the only parameter 'exams'. The description adds no new meaning beyond the schema (input types and range already covered). Baseline 3 is appropriate as the description does not degrade but also does not enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: compare 2-8 certification exams side by side on specific attributes (price, duration, etc.). It also provides example intents ('X vs Y', 'which is harder/cheaper') that distinguish it from sibling tools like get_exam_blueprint (single exam) and search_exams (broad search).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use examples ('X vs Y', 'which is harder/cheaper') and implies when not to use (e.g., single exam details go to get_exam_blueprint). However, it does not explicitly mention alternatives or when to avoid this tool, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_exam_blueprintAInspect
Get 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 exam', 'how is X weighted by domain', 'prerequisites for X', 'passing score for X', 'how long is X'. Accepts an exam_id, exam_code, or certification name. Includes a free practice-exam link.
| Name | Required | Description | Default |
|---|---|---|---|
| exam | Yes | Exam id, exam code, or certification name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; the description carries the full burden. Discloses the comprehensive data it returns (domain breakdown, weights, passing score, etc.) and mentions a free practice-exam link, which is sufficient for a read-only tool. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the return content, then usage examples. Every part is necessary and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given one parameter and no output schema, the description covers key aspects: what it returns, acceptable inputs, and a practice exam link. Minor omission like error handling is acceptable for this simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a description for 'exam'. The description adds value by reiterating accepted formats and providing concrete usage examples ('exam_id, exam_code, or certification name'), enhancing understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it retrieves the full published blueprint for one certification exam, listing specific details. Distinguishes from siblings by focusing on a single exam and contrasting with compare_exams, list_certifying_bodies, and search_exams.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit examples of when to call (e.g., 'what's on the X exam') and what inputs it accepts. Lacks explicit when-not-to-use or alternative sibling tool references, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_certifying_bodiesAInspect
List the 217 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.
| Name | Required | Description | Default |
|---|---|---|---|
| contains | No | Optional substring filter on the body name, e.g. 'micro', 'aws' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description confirms the tool is read-only and lists 217 bodies with exam counts and optional filtering. However, it does not specify output format or pagination, which are minor gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no wasted words. The first sentence covers the core purpose and scope, the second provides usage guidance and filter details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the main functionality and filter option, but lacks explicit mention of return fields (e.g., body name and count). Given the tool's simplicity, this is a minor omission.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The parameter 'contains' is described in the schema with a substring filter example. The description reiterates this and adds no additional semantic meaning beyond the schema, so it meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool lists certifying bodies with exam counts, provides example queries, and mentions optional filtering, clearly distinguishing it from sibling tools that deal with exams themselves.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit use-case examples ('what certification providers/vendors are covered', 'how many AWS/Microsoft/Cisco certs') and mentions the optional substring filter, providing clear guidance on when to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_examsAInspect
Search 1,562 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 offers. Returns matching exams with code, certifying body, question count, domain count, and a free practice-exam link.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Keywords: certification name, exam code, vendor, or topic | |
| certifying_body | No | Filter by certifying body, e.g. 'AWS', 'CompTIA', 'ISC2', 'Microsoft' | |
| vendor_slug | No | Filter by vendor slug, e.g. 'aws', 'microsoft', 'comptia' | |
| limit | No | Max results (default 20) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes input and output: returns exams with code, body, question/domain counts, and practice link. No annotations provided, but the description adequately captures the tool's behavior as a search.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, well-structured paragraph that front-loads the main action and includes examples. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description lists returned fields. Parameter descriptions are complete. Could mention pagination or empty results, but overall sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All 4 parameters have schema descriptions (100% coverage). The tool description adds context but does not significantly enhance parameter meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool searches certification exams by name, code, body, or vendor. Includes example queries and distinguishes from siblings like compare_exams or list_certifying_bodies.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs to call this tool whenever a user mentions a certification or exam, with concrete examples. Does not explicitly mention when not to use it, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v1.0.0- First observed
compare_exams - First observed
get_exam_blueprint - First observed
list_certifying_bodies - First observed
search_exams
TDQS
Scored across 4 tools
Each tool has a unique purpose: compare_exams compares multiple exams, get_exam_blueprint provides detailed info on one, list_certifying_bodies lists vendors, and search_exams searches for exams. No overlap.
All tool names follow a consistent verb_noun snake_case pattern: compare_exams, get_exam_blueprint, list_certifying_bodies, search_exams.
Four tools is a well-scoped set for a certification exam database, covering search, detail, comparison, and vendor listing without unnecessary extras.
The tools cover all likely user needs: finding exams, getting detailed blueprints, comparing multiple exams, and listing certifying bodies. No obvious gaps for a read-only reference.
Maintenance
Related MCP Connectors
APIs.guru MCP — keyless directory of 2,500+ public APIs and their OpenAPI specs.
Official MCP server for Certifier to issue, manage, and track certificates and badges.
Trust-scored search engine for MCP servers. 1,900+ sources indexed. IETF draft published. Referenced by OWASP MCP Security Cheat Sheet. L0-L4 trust levels based on cryptographic verification.
Curated, trust-first index of vetted MCP servers — scored tiers, monthly re-verified. Read-only.
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP server for searching and discovering 4,000+ public APIs3MIT
- FlicenseAqualityDmaintenanceAn unofficial MCP server that exposes public FedRAMP 20x documentation as deterministic, citable lookup tools for AI assistants, with every response citing the exact upstream source.7-
- AlicenseNot gradedqualityDmaintenanceMCP server to query Cloud Champion's training catalog. Enables AI agents to search, filter, and get statistics about Microsoft partner resources like webinars, videos, learning paths, and podcasts.MIT
- AlicenseNot gradedqualityBmaintenanceA read-only MCP server for querying U.S. K-12 academic standards via the Common Standards Project API.MIT