Exam guide·8 min read·13 June 2026

Anthropic Academy: CCA-F Exam Prep Guide

Anthropic Academy is free, but how well does it map to the CCA-F exam blueprint? We break down every track, gap, and study strategy for solution architects.

By Solomon Udoh · AI Architect & Certification Lead

Anthropic Academy: CCA-F Exam Prep Guide

What is Anthropic Academy, and is it free?

Anthropic Academy is Anthropic's own free learning portal, available at academy.anthropic.com. It offers self-paced video and text modules covering AI fundamentals, the Claude API, prompt engineering, tool use, MCP, and Claude Code. Every course is free to start; you do not need a paid Claude plan or a partner account. Completion certificates are issued per course, but they are not the same credential as the Claude Certified Architect, Foundations (CCA-F) exam, which costs $99 per attempt and requires a passing scaled score of 720 out of 1000.

The distinction matters. Anthropic Academy is study material. The CCA-F is the professional credential. Treating them as interchangeable is the single most common misconception we see among candidates who arrive under-prepared.

How does Anthropic Academy map to the CCA-F exam blueprint?

The CCA-F is divided into five weighted domains. Before investing time in any Academy track, it helps to know how each one maps to exam weight.

CCA-F DomainWeightClosest Academy Track(s)
Domain 1: Agentic Architecture & Orchestration27%Tool Use & Agents, Claude API
Domain 2: Tool Design & MCP Integration18%MCP track, Tool Use & Agents
Domain 3: Claude Code Configuration & Workflows20%Claude Code track
Domain 4: Prompt Engineering & Structured Output20%Prompt Engineering, AI Fluency
Domain 5: Context Management & Reliability15%Claude API, Prompt Engineering

Domain 1 alone accounts for 27% of the exam. If you spend most of your Academy time on the AI Fluency introductory track, you are optimising for the lowest-weighted material. We recommend inverting the default course order: start with Tool Use & Agents, then MCP, then Claude Code, and use AI Fluency only to fill conceptual gaps.

Anthropic designed the CCA-F to reward architects who can reason about system behaviour under failure, not just describe API parameters.

Anthropic , Claude Certified Architect Foundations Exam Guide

Which Academy tracks matter most for solution architects?

Solution architects preparing for the CCA-F should prioritise tracks in this order, based on domain weight and the scenario-based question format.

1. Tool Use & Agents (Domain 1, 27%). This track covers the agentic loop, multi-agent orchestration, subagent spawning, and error routing. These are the concepts that appear most frequently in exam scenarios. Pair the Academy content with our Agentic Architecture & Orchestration concept library for deeper coverage of topics such as hub-and-spoke architecture and coordinator dynamic subagent selection.

2. MCP Track (Domain 2, 18%). The Model Context Protocol track explains server scoping, tool discovery, and the isError flag pattern. The Academy modules are a solid introduction, but they stop short of the debugging scenarios the exam tests. You will want to supplement with hands-on MCP server work and our Tool Design & MCP Integration concepts.

3. Claude Code Track (Domain 3, 20%). This track covers the three-level configuration hierarchy, CLAUDE.md files, hooks, and CI integration. The exam tests configuration decisions at the project, user, and enterprise levels. The Academy content here is among the most directly exam-relevant of any track.

4. Prompt Engineering Track (Domain 4, 20%). The Academy covers chain-of-thought, few-shot examples, and structured output. The exam goes further, testing schema design, output validation loops, and the interaction between system prompts and tool descriptions. Our Prompt Engineering & Structured Output concepts cover the delta.

5. AI Fluency (Domains 4 and 5, background). Useful for candidates who are new to large language models, but it contributes little marginal value for experienced engineers. Treat it as optional.

6. Cloud Integration (AWS Bedrock, Google Cloud Vertex AI). The Academy touches on deploying Claude via Amazon Bedrock and Google Cloud Vertex AI. The CCA-F does not test cloud-provider-specific configuration deeply; it tests Claude's behaviour and architecture patterns. Do not over-index here.

Do Academy completion certificates count toward the CCA-F credential?

No. Academy completion certificates are issued by Anthropic's learning portal and confirm that you watched or read the course material. The CCA-F credential is issued only upon passing the proctored exam with a scaled score of 720 or above. The two are separate systems.

That said, Academy certificates are not worthless. They signal structured study to hiring managers and partners within the Claude Partner Network, which as of 3 June 2026 includes over 40,000 applicant firms. Listing them alongside the CCA-F on a CV is reasonable; listing them instead of the CCA-F is not.

What are the hardest concepts the Academy under-covers?

Based on the exam blueprint's 30 task statements, these are the areas where Academy content is thinnest relative to exam weight.

Prompt caching and token efficiency. The Academy explains what prompt caching is, but the exam tests when to apply it, what the cache invalidation rules are, and how to architect prompts to maximise cache hits across a multi-turn session. This falls under Context Management & Reliability.

Extended thinking. The Academy introduces extended thinking as a feature. The exam tests the trade-offs: latency, token cost, and when extended thinking genuinely improves accuracy versus when it adds cost without benefit.

Agentic loop anti-patterns. The exam consistently rewards candidates who can identify failure modes before they occur. The Academy describes the happy path; it does not dwell on agentic loop anti-patterns such as premature termination, infinite retry, or narrow decomposition failure.

Structured error metadata in MCP. The Academy covers the isError flag. The exam tests the full error taxonomy: access failure versus valid empty result, structured error metadata fields, and how errors propagate across a multi-agent pipeline.

High-stakes enforcement decisions. A recurring exam pattern asks whether a constraint should be enforced via a system prompt or programmatically. The Academy does not address this distinction explicitly. Our concept on high-stakes enforcement decision rules covers the exam's preferred reasoning pattern.

How much hands-on building experience does the exam expect?

The CCA-F is scenario-based: 60 multiple-choice questions, each presenting a realistic architecture or debugging situation. You are not asked to write code during the exam. However, the scenarios assume you have built with the API, not just read about it.

Specifically, the exam expects you to reason about:

  • What happens when a tool call returns an error mid-loop
  • How to structure a CLAUDE.md file for a monorepo with path-specific rules
  • When to use tool_choice: {"type": "any"} versus {"type": "auto"}
  • How to pass structured context between a coordinator and subagents without losing attribution

None of these questions are answerable from Academy videos alone. Candidates who have built at least one end-to-end agentic workflow using the Messages API, even a simple one, consistently report that the scenarios feel familiar rather than abstract.

A minimal hands-on checklist before sitting the exam:

  1. Make a raw Messages API call with a tool definition and inspect the stop_reason field.
  2. Build a two-agent system where a coordinator delegates to a subagent and handles a tool error.
  3. Create a CLAUDE.md file with at least one path-scoped rule and test it in Claude Code.
  4. Write a prompt that returns structured JSON and validate it against a schema.
bash
# Minimal Messages API call with a tool definition
curl https://api.anthropic.com/v1/messages \
-H "x-api-key: $ANTHROPIC_API_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "content-type: application/json" \
-d '{
"model": "claude-opus-4-5",
"max_tokens": 1024,
"tools": [{
"name": "get_order_status",
"description": "Returns the current status of a customer order by order ID.",
"input_schema": {
"type": "object",
"properties": {
"order_id": {"type": "string", "description": "The unique order identifier."}
},
"required": ["order_id"]
}
}],
"messages": [{"role": "user", "content": "What is the status of order ORD-9821?"}]
}'

After running this, inspect the response body. If stop_reason is "tool_use", Claude is requesting the tool. If it is "end_turn", Claude answered without calling it. Understanding that distinction is foundational to Domain 1.

What is the fastest credible path from Academy to CCA-F pass?

We suggest a four-week structure for candidates who already have some API experience.

WeekFocusPrimary Resource
1Domains 1 and 2 (45% of exam)Academy Tool Use & Agents + MCP track; our Agentic Architecture and Tool Design concepts
2Domains 3 and 4 (40% of exam)Academy Claude Code + Prompt Engineering; hands-on CLAUDE.md and schema work
3Domain 5 and gap concepts (15% + hard topics)Academy Claude API; extended thinking, prompt caching, context management
4Full practice exams and reviewAI Skill Certs 60-question practice exams, scored 100 to 1000

Our practice exams use the same 100 to 1000 scale and 720 passing bar as the real exam. The adaptive engine, which uses Bayesian Knowledge Tracing with a 0.90 mastery threshold, surfaces the specific task statements where you are weakest so you can return to the right Academy module or concept page rather than re-reading everything.

The exam consistently rewards deterministic solutions over probabilistic ones when stakes are high, proportionate fixes, and root-cause tracing.

Anthropic , Claude Certified Architect Foundations Exam Guide

AI Skill Certs is an independent prep platform; we are not affiliated with or endorsed by Anthropic. We built our 174-concept library specifically to cover the gaps between Academy content and the full 30-task-statement blueprint.

What does Anthropic recommend for MCP debugging and tool discovery?

Per Anthropic's MCP documentation, the recommended debugging approach for MCP servers is to inspect the tool list returned at connection time, verify that tool descriptions are unambiguous and non-overlapping, and use structured error responses with the isError flag rather than raising exceptions that the model cannot interpret.

For tool discovery in production, Anthropic recommends scoping MCP servers to the narrowest permission set that satisfies the use case, using environment variable expansion for credentials rather than hardcoding them in configuration files, and testing tool descriptions by asking Claude to explain which tool it would use for a given task before running it. These patterns appear directly in exam scenarios under Domain 2.

The exam does not test AWS Bedrock or Google Cloud Vertex AI configuration syntax. It tests Claude's behaviour and the architectural decisions that surround it. Cloud integration knowledge is useful context, but it will not move your scaled score.

Frequently asked questions

Is Anthropic Academy free to use?
Yes. Every course on Anthropic Academy is free to access and self-paced. You do not need a paid Claude subscription or a Claude Partner Network account. Completion certificates are issued at no cost. The only paid component in the Anthropic learning ecosystem is the CCA-F exam itself, which costs $99 per attempt.
Do Anthropic Academy certificates count as the Claude Certified Architect credential?
No. Academy completion certificates confirm course attendance but are not the CCA-F credential. The Claude Certified Architect, Foundations certification is awarded only after passing the proctored exam with a scaled score of 720 or above on a 100 to 1000 scale. The two are entirely separate.
Which Anthropic Academy track is most important for the CCA-F exam?
The Tool Use & Agents track is the highest priority because Domain 1 (Agentic Architecture & Orchestration) carries 27% of the exam weight, the largest single domain. The Claude Code track and Prompt Engineering track are next, each covering domains worth 20%. AI Fluency is the least exam-relevant track for experienced engineers.
How long does it take to complete Anthropic Academy before sitting the CCA-F?
Most candidates with existing API experience complete the relevant Academy tracks in one to two weeks of part-time study. We recommend a four-week total preparation window: two weeks on Academy content and hands-on building, one week on gap concepts such as extended thinking and prompt caching, and one week on full-length practice exams.
Does Anthropic Academy cover AWS Bedrock and Google Cloud Vertex AI deeply enough for the CCA-F?
The Academy introduces Claude deployment via Amazon Bedrock and Google Cloud Vertex AI, but the CCA-F does not test cloud-provider configuration syntax. The exam tests Claude's architecture patterns and behaviour. Candidates should not over-invest in cloud integration modules at the expense of the higher-weighted agentic and tool design domains.
Can I pass the CCA-F using only Anthropic Academy materials?
Unlikely for most candidates. The Academy covers concepts at an introductory to intermediate level, but the exam's 60 scenario-based questions test failure-mode reasoning, MCP error taxonomy, hook versus prompt enforcement decisions, and structured context passing between agents. These topics require supplementary study and hands-on API experience beyond what the Academy provides.

People also ask

What is Anthropic Academy?
Anthropic Academy is Anthropic's free self-paced learning portal at academy.anthropic.com. It offers courses on AI fundamentals, the Claude API, prompt engineering, tool use, MCP, and Claude Code. Completion certificates are issued per course, but the portal is separate from the paid CCA-F professional certification exam.
How does Anthropic Academy compare to the Claude certification exam?
Anthropic Academy is free study material; the Claude Certified Architect, Foundations exam is a $99 proctored credential. Academy certificates confirm course completion. The CCA-F requires a scaled score of 720 out of 1000 across 60 scenario-based questions and is the only credential recognised within the Claude Partner Network.
Does Anthropic Academy cover MCP and tool use?
Yes. Anthropic Academy includes a dedicated MCP track and a Tool Use & Agents track. They cover server scoping, tool discovery, and the isError flag pattern at an introductory level. The CCA-F exam tests these topics more deeply, including error propagation across multi-agent pipelines and structured error metadata design.
Is Anthropic Academy enough to prepare for the Claude Certified Architect exam?
Not on its own for most candidates. The Academy provides a solid conceptual foundation, but the CCA-F's scenario-based questions test failure-mode reasoning and architectural trade-offs that go beyond Academy content. Hands-on API experience and supplementary practice exams are recommended alongside Academy study.
What topics does Anthropic Academy not cover that appear on the CCA-F?
The Academy under-covers agentic loop anti-patterns, prompt caching architecture, extended thinking trade-offs, high-stakes enforcement decisions (prompt versus programmatic), and structured error metadata in MCP. These topics appear in CCA-F scenarios under Domains 1, 2, and 5 and require supplementary study beyond the Academy curriculum.

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