school.delegation/delegation-school
Official9 toolsLearn to delegate real work to AI, not just chat with it — a course taught live in your own Claude.
Learn delegation strategies and best practices for working effectively with AI.
Captured live from the server via tools/list.
overview
What delegation.school is, the three tracks, and how to run the course as the learner's tutor. Background reading.
No parameters.
start_session
Call FIRST. Place or resume a learner: returns their level, completed lessons, and the recommended next lesson. Ask for the learner's EMAIL ADDRESS and pass it as `learner` — emails are stable and unique; a bare name collides across learners and gets mistyped. Pass their real name as `name` for the certificate.
Parameters (3)
- learnerstringrequired
The learner's EMAIL ADDRESS — their stable, unique progress key. Ask for it; do not key off a bare name (names collide across learners and get mistyped).
- namestring
Optional: the learner's display name, for the certificate and a friendlier greeting. The email stays the key.
- levelstring
Optional: set/override their level (scratch | intermediate | power).
list_lessons
List lessons (slug, title, track, order, summary), optionally filtered to one track.
Parameters (1)
- trackstring
Optional track filter.
get_lesson
Get the full markdown of one lesson by slug. Teach from it: lead with the why, then run the exercise with the learner's real work.
Parameters (1)
- slugstringrequired
Lesson slug from list_lessons / start_session.
complete_lesson
Record a lesson result for a learner AFTER grading its quiz/assignment. passed:true marks it done and advances; passed:false records the attempt without advancing (reteach). Always include a `reflection` when you have one — it's the signal that improves the course.
Parameters (4)
- learnerstringrequired
Same EMAIL address used in start_session.
- slugstringrequired
The lesson slug just attempted.
- passedboolean
Did they pass the quiz/assignment? Default true. false = reteach, don't advance.
- reflectionstring
What confused them, what landed, or what they want next (≤1000 chars). Feeds curriculum improvement.
course_stats
OPERATOR / Inspectable State: usage snapshot of the whole course — learner count, level mix, completions, per-lesson pass rates, and recent reflections. Requires admin_key. Answers 'what is the state of the work?' for an operator agent.
Parameters (1)
- admin_keystringrequired
Operator admin key (Worker secret ADMIN_KEY).
verify_ticket
OPERATOR (Capital Factory gift shop): validate a reward code (Golden Ticket GT- or Founding Graduate badge FG-) — returns who earned it, the reward, when, and whether it's been redeemed. Pass redeem:true to mark it redeemed at point of redemption. Requires admin_key.
Parameters (3)
- codestringrequired
The reward code, e.g. GT-AB12CD34 (Station ticket) or FG-AB12CD34 (Founding badge).
- admin_keystringrequired
Operator admin key (Worker secret ADMIN_KEY).
- redeemboolean
If true, mark the ticket redeemed now (one-way).
set_level
OPERATOR: reclassify an existing learner's track (scratch | intermediate | power). Routes through the learner's record so the change sticks. Use when a learner was placed wrong — e.g. a scratch enrollee who's really a power operator. Requires admin_key. The learner must have started a session first.
Parameters (3)
- learnerstringrequired
The learner's name/email (same key used in start_session).
- levelstringrequired
The new level: scratch | intermediate | power.
- admin_keystringrequired
Operator admin key (Worker secret ADMIN_KEY).
submit_feedback
Send the course team feedback FOR the learner — what's confusing, a bug, an idea, or praise. No grade, no admin key. Use it the moment a learner is stuck or reacts to something, AND always offer it when a session wraps ('anything confusing, or that you wish it did?'). Routes to the team's Slack + the feedback log so friction becomes a signal instead of a 1:1 text.
Parameters (4)
- messagestringrequired
The learner's feedback, in their own words (≤2000 chars).
- learnerstring
Optional: the learner's name/email so the team can follow up.
- kindstring
Optional category.
- lessonstring
Optional: the lesson slug it's about.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"delegation-school": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://delegation.school/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.