Exam guide·8 min read·20 June 2026

Anthropic Academy Courses: CCA-F Exam Prep Guide 2026

A sober look at Anthropic Academy courses, what they cover, what they skip, and how to fill the gaps for the Claude Certified Architect, Foundations exam.

By Solomon Udoh · AI Architect & Certification Lead

Anthropic Academy Courses: CCA-F Exam Prep Guide 2026

Anthropic Academy courses are free, self-paced, and certificate-bearing, making them the most obvious starting point for anyone preparing for the Claude Certified Architect, Foundations (CCA-F) exam. But "obvious starting point" is not the same as "sufficient preparation." This guide maps every major Academy track to the five CCA-F domains, flags the gaps, and tells you where to spend your remaining study hours.

What are Anthropic Academy courses, and are they really free?

Yes, the courses are genuinely free. You register through Anthropic's Skilljar-hosted Academy portal using either an existing Anthropic account or a new Skilljar account; no credit card is required. Completion certificates are issued per course, though these are distinct from the CCA-F credential itself.

The catalogue has grown since the Academy launched. Early coverage described 13 courses; the current catalogue lists 17 tracks spanning introductory, developer, and partner-facing content. Anthropic updates the Academy without versioned release notes, so the precise count can shift. Check Anthropic's Academy portal directly for the live list rather than relying on any cached screenshot.

The Claude Partner Network is backed by a $100M programme, and as of 3 June 2026 more than 40,000 partner firms have applied and over 10,000 individuals have earned certifications.

Anthropic , Claude Partner Network announcement

How does the Academy catalogue map to the five CCA-F domains?

The CCA-F exam covers five weighted domains. The table below shows how the main Academy tracks align, along with each domain's exam weight.

CCA-F DomainExam WeightPrimary Academy Track(s)
Domain 1: Agentic Architecture & Orchestration27%Claude Code 101, Building with Claude Agents
Domain 2: Tool Design & MCP Integration18%MCP 101, Integrating Claude with External Systems
Domain 3: Claude Code Configuration & Workflows20%Claude Code 101, Claude Code Advanced
Domain 4: Prompt Engineering & Structured Output20%Claude 101, Prompt Engineering for Developers
Domain 5: Context Management & Reliability15%Claude 101, AI Limitations & Safety

Domain 1 carries the heaviest weight at 27%, yet the Academy's agentic content is spread across multiple courses rather than consolidated. Candidates who treat Claude Code 101 as their sole agentic preparation will miss orchestration concepts such as hub-and-spoke architecture and coordinator dynamic subagent selection that appear in scenario questions.

Which course should a solutions architect take first?

Start with Claude 101 regardless of your prior experience. It establishes the mental model for how Claude processes context, handles ambiguity, and applies safety constraints. Skipping it to jump straight to Claude Code 101 leaves gaps in Domain 4 (Prompt Engineering & Structured Output, 20%) and Domain 5 (Context Management & Reliability, 15%).

After Claude 101, the recommended sequence for CCA-F candidates is:

  1. Claude Code 101 (Domains 1 and 3)
  2. MCP 101 (Domain 2)
  3. Prompt Engineering for Developers (Domain 4)
  4. AI Limitations, Safety & Security (Domain 5)
  5. Building with Claude Agents (Domain 1 reinforcement)

This order mirrors the exam's descending domain weight. You front-load the highest-weighted material while the foundational concepts from Claude 101 are still fresh.

What does the MCP track cover, and is it enough for exam questions?

The MCP 101 course covers the Model Context Protocol specification, tool discovery, the MCP inspector, and basic integration patterns for connecting Claude to external systems. For Domain 2 (Tool Design & MCP Integration, 18%), this is a solid foundation.

However, the Academy course does not go deep on failure modes. Exam scenarios regularly test whether candidates can distinguish an access failure from a valid empty result, handle the isError flag pattern, or design tool descriptions that prevent misrouting. These are operational concerns that the introductory MCP track treats lightly.

Supplement the Academy MCP course with hands-on work: build a minimal MCP server, intentionally break tool discovery, and trace the error propagation. The exam rewards candidates who have reasoned through failure paths, not just those who can recite the happy-path flow.

json
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp/sandbox"],
"env": {
"READ_ONLY": "true"
}
}
}
}

The snippet above shows a minimal MCP server configuration with an environment variable constraint. Exam questions on environment variable expansion in MCP config expect you to reason about what happens when READ_ONLY is absent or overridden at a different scope.

How deep does the Claude Code track go on subagents and reusable workflows?

Claude Code 101 introduces the three-level configuration hierarchy, CLAUDE.md files, and basic slash commands. The advanced Claude Code course extends this to subagent delegation, agent skills, and reusable workflow patterns.

For Domain 3 (Claude Code Configuration & Workflows, 20%), you need to understand:

  • How configuration scopes interact (user, project, and sub-directory levels)
  • When a skill defined in a CLAUDE.md file takes precedence over a system prompt instruction
  • How to design reusable workflows that survive session resets

The Academy covers the first two points adequately. The third, session resilience, is where candidates most often lose marks. Summary injection for fresh sessions and the choice between resuming, forking, or starting fresh are Domain 1 and Domain 3 crossover topics that the Academy treats as separate concerns. The exam treats them as one integrated decision.

What is the difference between Claude Cowork and Claude Code?

Claude Cowork is Anthropic's collaborative workspace product, designed for teams working together in a shared interface. Claude Code is the agentic coding tool that runs in your terminal, reads and writes files, executes commands, and integrates with your local development environment.

For the CCA-F exam, Claude Code is the relevant product. Exam scenarios assume a local or CI/CD context where the candidate is configuring Claude Code's behaviour through CLAUDE.md files, hooks, and MCP server definitions. Claude Cowork does not appear in the current exam guide.

The distinction matters because some Academy marketing materials group both under the "Claude for teams" umbrella. If you find yourself reading about shared workspaces and real-time collaboration, you have drifted into Cowork territory and should redirect to the Claude Code tracks.

What AI limitations, safety, and security topics appear on the exam?

Domain 5 (Context Management & Reliability, 15%) and Domain 1 both surface safety and reliability concerns. The Academy's AI Limitations, Safety & Security course covers:

  • Hallucination and confidence calibration
  • Trusted versus untrusted input sources
  • Custom skill boundaries and permission scoping
  • Prompt injection vectors in agentic pipelines

Claude is trained to be helpful, harmless, and honest, and its safety behaviours are designed to be robust even when instructions attempt to override them.

Anthropic , Claude Model Card

The exam applies these principles in scenario form. A typical question presents an agentic pipeline where a subagent receives instructions from an external tool result and asks whether the pipeline should execute, pause for human review, or reject the instruction. The correct answer almost always traces to whether the instruction source is trusted and whether the action is reversible. The Academy course gives you the vocabulary; the high-stakes enforcement decision rule concept gives you the decision framework.

Do AWS Bedrock and Google Cloud Vertex AI tracks matter for CCA-F?

Anthropic has published Academy content covering Claude on AWS Bedrock and Google Cloud Vertex AI. These tracks are relevant for practitioners deploying Claude in cloud-managed environments, but they are not tested on the CCA-F exam as of the exam guide published at launch on 12 March 2026.

The CCA-F exam tests Claude's native APIs, the Messages API, tool use, MCP, and Claude Code, rather than cloud-provider-specific SDK wrappers. If your role involves Bedrock or Vertex AI deployments, the cloud tracks are professionally useful. For exam preparation specifically, they are optional reading.

TrackCCA-F RelevanceProfessional Relevance
Claude on AWS BedrockLow (not in exam guide)High for AWS-deployed architectures
Claude on Google Cloud Vertex AILow (not in exam guide)High for GCP-deployed architectures
Claude Code 101High (Domains 1, 3)High for all engineering roles
MCP 101High (Domain 2)High for integration architects
Prompt Engineering for DevelopersHigh (Domain 4)High universally

How should you fill the gaps the Academy leaves?

The Academy is a strong foundation but it was not designed as a CCA-F study programme. Three categories of gap appear consistently:

Scenario reasoning. The exam's 60 scenario-based questions require you to choose between plausible options, not just recall definitions. The Academy's courses are largely expository. Supplement with timed practice under exam conditions.

Concept precision. Terms like parallel subagent spawning, structured context passing, and agentic loop anti-patterns appear in exam distractors with subtle variations. The Academy introduces these ideas but rarely tests the boundary cases.

Domain 1 depth. At 27% of the exam, Agentic Architecture & Orchestration is the single most important domain. The Academy's agentic content is spread across at least three courses and does not present a unified orchestration model. Our Agentic Architecture & Orchestration concept library maps all 30 task statements to atomic concepts, which is a more efficient way to close this gap than rewatching course videos.

The CCA-F passing score is 720 on a 100-to-1000 scale, per Anthropic's exam guide. That is a meaningful bar. Candidates who complete the Academy courses and then move directly to the exam without scenario practice consistently report that the questions felt harder than the course material suggested. Build in at least two full 60-question practice sessions, scored on the same 100-to-1000 scale, before booking your attempt.

AI Skill Certs is an independent prep platform; we are not affiliated with or endorsed by Anthropic. Our concept library at /concepts covers 174 atomic concepts mapped to all five domains and 30 task statements, and our adaptive engine uses Bayesian Knowledge Tracing with a 0.90 mastery threshold to surface the concepts where you are weakest. If you have finished the Academy tracks and want to know where your gaps actually are, that is where we would point you next.

Frequently asked questions

Are Anthropic Academy courses free and do they give you a certificate?
Yes. All Anthropic Academy courses are free to access via the Skilljar-hosted portal. You can register with an existing Anthropic account or create a Skilljar account at no cost. Each completed course issues a completion certificate, which is separate from the paid CCA-F professional certification credential.
How many courses does Anthropic Academy currently offer?
The catalogue has grown from an earlier 13-course lineup to at least 17 tracks as of mid-2026, covering introductory, developer, MCP, Claude Code, safety, and cloud-platform content. Anthropic updates the Academy without versioned release notes, so check the official Academy portal at anthropic.com/academy for the current count.
Do I need an Anthropic account or just a Skilljar account to access Academy courses?
Either works. The Academy portal runs on Skilljar, and you can register with a new Skilljar account without an existing Anthropic account. However, hands-on exercises that call the Claude API will require an Anthropic API key, which does require an Anthropic account.
Is the Anthropic Academy enough to pass the CCA-F exam on its own?
Unlikely for most candidates. The Academy provides strong conceptual grounding but was not designed as a CCA-F study programme. The exam's 60 scenario-based questions test boundary cases and decision frameworks that the Academy covers lightly. Supplement with timed practice exams scored on the 100-to-1000 scale before booking your attempt.
Which Anthropic Academy course is most important for the CCA-F exam?
Claude Code 101 has the broadest exam coverage, touching Domains 1 and 3 which together account for 47% of the exam. However, Claude 101 should come first to establish the foundational mental model for prompt engineering and context management, which underpins every other domain.
Do the AWS Bedrock and Google Cloud Vertex AI Academy tracks appear on the CCA-F exam?
No. The CCA-F exam guide tests Claude's native APIs, the Messages API, tool use, MCP, and Claude Code, not cloud-provider SDK wrappers. The Bedrock and Vertex AI tracks are professionally useful for cloud deployments but are not required for exam preparation.

People also ask

What are Anthropic Academy courses?
Anthropic Academy courses are free, self-paced learning tracks hosted on a Skilljar portal at anthropic.com/academy. The catalogue covers Claude fundamentals, prompt engineering, Claude Code, the Model Context Protocol, AI safety, and cloud-platform integrations. Completion certificates are issued per course at no charge.
How do Anthropic Academy courses relate to the Claude certification exam?
The Academy provides foundational knowledge across all five CCA-F domains but was not designed as a dedicated exam prep programme. The CCA-F exam, launched 12 March 2026 and priced at $99, uses 60 scenario-based questions that go deeper than the Academy's expository course content, particularly on agentic orchestration and failure-mode reasoning.
Is Anthropic Academy the same as Anthropic Skilljar?
Yes, in practice. Anthropic Academy is the brand name for Anthropic's learning programme; Skilljar is the third-party learning management system that hosts it. When you register on the Skilljar portal to access Academy content, you are accessing the same courses Anthropic markets as the Academy.
Which Anthropic Academy course should I take for MCP preparation?
MCP 101 is the primary Academy track for Model Context Protocol preparation, covering tool discovery, the MCP inspector, and external system integration. For CCA-F Domain 2 (Tool Design & MCP Integration, 18%), supplement it with hands-on server builds and study of error-handling patterns the course covers lightly.
Are Anthropic Academy courses updated regularly?
Anthropic updates the Academy catalogue without publishing versioned release notes, so the course count and content can change without announcement. The catalogue grew from roughly 13 to at least 17 courses between the Academy's launch and mid-2026. Always check anthropic.com/academy directly for the current state.

About the author

Solomon Udoh

AI Architect & Certification Lead

Solomon Udoh is an AI Architect who designs and ships production agent systems on the Claude API and Claude Code. He built AI Skill Certs' adaptive engine and authored its 174-concept knowledge graph, mapping every Claude Certified Architect - Foundations objective to hands-on, exam-aligned practice.

  • Designs production multi-agent systems on the Claude API and Agent SDK
  • Author of the AI Skill Certs knowledge graph (174 mapped exam concepts)
  • Builds with MCP, Claude Code, structured outputs, and agentic loops daily
  • Reviews every concept page against the official Anthropic exam guide

You might also like

Ready to put it into practice?

Study every exam concept with an adaptive tutor.

Start studying