Ask questions during the course
Connect your own Claude to the live Q&A board, then ask away. The presenter sees every question and answers them in real time.
Step 1 Connect the Q&A server
Paste this into your terminal where Claude Code is installed:
claude mcp add --transport http meetingselect https://meetingselect.waimakersmcp.com/mcp
Step 2 Teach Claude how to use it
Paste this prompt into Claude Code once. It writes a small local skill so
you can just say ask the presenter … for the rest
of the course:
Please create a local Claude Code skill on my machine that helps me ask
questions during this course and read the presenter's answers.
The skill talks to a remote MCP server called "meetingselect". If it is not
already connected, connect it first by running:
claude mcp add --transport http meetingselect https://meetingselect.waimakersmcp.com/mcp
That server exposes exactly two tools:
- ask_question(text, name, email): sends a question to the presenter's live
board. name AND email are both required — always ask me for my name and
email before the first question and reuse them for the rest of the session;
never guess them. My email is kept private for the presenter and is never
shown publicly.
- list_questions(): returns the public feed of questions and any answers the
presenter has posted. It returns each asker's name but never any email.
Write the skill to ~/.claude/skills/meetingselect-qa/SKILL.md as a global user
skill (not project-scoped). Give it YAML frontmatter with a name and a
description that triggers whenever I want to ask the presenter a question or
check for answers during the course. In the body, instruct yourself to:
1. Collect my name and email once at the start, then reuse them.
2. Call ask_question with my text, name, and email when I want to ask
something.
3. Call list_questions when I ask whether something was answered or what has
been asked so far, and summarise the results for me.
Keep it short and practical. After writing it, tell me it is ready and show me
an example of how to use it.