notetaker-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_enrolled_coursesA | List every course you're enrolled in on learn.deeplearning.ai. Specializations are flattened into their constituent courses. Each item has slug, name, type ("course"|"short_course"), progress_percent, and (for courses inside a specialization) the parent specialization info. Use the returned |
| list_lessonsA | List lessons for one course, grouped by module in playback order. Args:
course_slug: from Returns a dict with |
| get_lesson_transcriptA | Fetch the full transcript for one video lesson. Args:
course_slug: from Returns |
| get_lesson_frameA | Screenshot a single video frame from a lesson at the given timestamp. Args:
course_slug: from Returns a JSON summary text block, plus a caption + inline image (unless include_image=False). Requires ffmpeg on PATH. |
| get_lesson_slidesA | Auto-detect slide changes in a lesson video and return one frame per slide. Args:
course_slug: from Returns a JSON summary block first (course/lesson/frame list with timestamps and saved paths), then per-frame caption + inline image unless include_images=False. Requires ffmpeg. |
| pingA | Health check. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct function: enrolling data, lesson structure, transcript text, a single video frame, slide extraction, and health checking. The only adjacent pair is get_lesson_frame and get_lesson_slides, but one is explicitly a single timestamped frame while the other detects multiple slide boundaries, so the separation is clear.
The core tools consistently follow a verb_noun pattern: list_enrolled_courses, list_lessons, get_lesson_transcript, get_lesson_frame, get_lesson_slides. ping is a standard exception for health checks and doesn't create confusion.
Six tools is a well-scoped set for a read-only course-content access server. Each one serves a necessary step in traversing courses → lessons → transcript/frames/slides without redundancy.
The core workflow of listing courses, exploring lessons, and retrieving transcripts or visual content is fully represented. There is no note-creation or course-search capability, but the server appears focused on content extraction rather than note storage, so this is a minor rather than critical gap.