Claude Certified Architect Foundations — a practical exam-prep roadmap
A guided path through freeCodeCamp's 13-hour Claude certification course, covering agent architecture, MCP tools, Claude Code workflows, prompting, context, and production safeguards.
The cover image is provided by YouTube. The privacy-enhanced player loads only after your choice; Google may then process device data and use cookies or similar storage. The written summary works without the player.
// key takeaways
- ›Start with the agent loop: gather context, act through tools, verify, and recover from failure.
- ›Understand MCP and tool stop reasons well enough to design predictable multi-step systems.
- ›Treat Claude Code, the Agent SDK, prompting, context management, and authentication as one architecture.
- ›Use the course for implementation practice, then check the current official exam guide for scope and eligibility.
What this resource is
freeCodeCamp's guide points to a 13-hour course led by Andrew Brown for the Claude Certified Architect, Foundations exam. It is designed as implementation-focused preparation rather than a short list of facts to memorize.
Anthropic introduced Claude Certified Architect, Foundations as its first technical certification for solution architects building production applications with Claude. The freeCodeCamp resource is independent preparation material, not the official exam guide.
What you will study
- Agent architecture and orchestration: the full gather-context, act, verify, and recover loop, including hub-and-spoke coordination.
- Tool design and MCP: tool contracts, stop reasons such as
tool_useandend_turn, and how MCP fits into a production system. - Claude Code and the Agent SDK: local setup, authentication, configuration, and multi-agent workflows.
- Prompt and context engineering: structured output, error handling, review passes, and working within large context windows.
How to use the course
Do not try to retain thirteen hours in one pass. Split it by exam domain, build one small working example for each section, and keep a list of claims that need confirmation in the current official documentation. Finish with a timed review of your weakest domains rather than replaying the entire course.
Read Beau Carnes' freeCodeCamp guide · Watch the full course · Anthropic's certification announcement
// related
▶ 30:0730 Minutes to Master Claude Code — full beginner-to-builder walkthrough
Tyler Germain's 30-minute crash course: install, plans, the .claude folder, CLAUDE.md, MCP servers and skills, then two live builds — a Next.js site and an Instagram assistant.

The four MCP servers actually worth wiring up
Most MCP servers are demos. These four earn their place in a daily setup.

Subagents, properly: when forking context beats one long thread
A practical model for when to spawn a subagent, what to put in its prompt, and how to keep the parent thread cheap.