
How to add Architect Cert MCP to Claude Desktop
Adaptive prep for the Claude Certified Architect exam: 390 questions, spaced repetition, guided capstone, zero sycophancy. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.
Last updated June 14, 2026 ยท 25โ ยท stdio ยท no auth
Claude Desktop config for Architect Cert MCP
npm install -g connectry-architect-mcp{
"mcpServers": {
"architect-cert-mcp": {
"command": "connectry-architect-mcp",
"args": []
}
}
}Setup steps
- 1Open Claude Desktop โ Settings โ Developer โ Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
- 2Paste the Architect Cert MCP config below under the top-level "mcpServers" key.
- 3Fill in any placeholder secrets (API keys, paths) in the snippet.
- 4Save the file, then fully quit and reopen Claude Desktop.
- 5Open a chat and confirm Architect Cert MCP's tools appear under the ๐ tools menu.
Before you start
- Node.js (npm) for global install of connectry-architect-mcp
- An MCP-compatible client (Claude Code, Claude Desktop, or any MCP client)
- Best experience requires a client supporting AskUserQuestion, TodoWrite, and Claude Preview
What Architect Cert MCP can do in Claude Desktop
start_assessmentBegin with 15 diagnostic questions (lessons-first, one at a time) to determine your learning path.
get_practice_questionGet the next adaptive question with clickable A/B/C/D buttons (overdue reviews > weak areas > new material).
submit_answerGrade your answer deterministically and present interactive follow-up options.
follow_upHandle post-answer actions: code examples, concept lessons, handouts, reference projects.
get_section_detailsDeep dive into a specific task statement with the full concept handout.
get_progressView overall study progress with mastery percentages per domain.
get_curriculumBrowse all 5 domains and 30 task statements with current mastery levels.
get_weak_areasIdentify topics that need the most work, ranked by weakness.
Security
Runs entirely locally over stdio with no authentication, accounts, cloud, or telemetry. Study progress and config are stored on your machine in ~/.connectry-architect/ (progress.db SQLite in WAL mode and config.json). The dashboard runs on a local HTTP server for Claude Preview.
Architect Cert MCP + Claude Desktop FAQ
Where is the Claude Desktop config file?
Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the Architect Cert MCP config there under the "mcpServers" key and restart the client.
Is Architect Cert MCP safe to use with Claude Desktop?
Runs entirely locally over stdio with no authentication, accounts, cloud, or telemetry. Study progress and config are stored on your machine in ~/.connectry-architect/ (progress.db SQLite in WAL mode and config.json). The dashboard runs on a local HTTP server for Claude Preview.
Does it run in the cloud or require an account?
No. Everything runs locally over stdio. There are no accounts, no cloud, and no telemetry โ progress is stored on your machine at ~/.connectry-architect/progress.db (SQLite).
How is grading done โ does Claude judge my answers?
No LLM is involved in judging correctness. Grading is a pure deterministic function (gradeAnswer), with no partial credit, and the submit_answer tool instructs Claude to relay results verbatim to avoid sycophancy.
What is the npm package name?
connectry-architect-mcp. Install it globally with `npm install -g connectry-architect-mcp`, or add it to Claude Code with `claude mcp add connectry-architect -- connectry-architect-mcp`.