Tool tree
answer_exam_questionAction
Select an answer choice (A, B, C, or D), toggle question review flag, or navigate between questions during an active mock exam session.
View tool JSON
{
"name": "answer_exam_question",
"kind": "act",
"impl": "imperative",
"description": "Select an answer choice (A, B, C, or D), toggle question review flag, or navigate between questions during an active mock exam session.",
"inputSchema": {
"type": "object",
"properties": {
"action": {
"enum": [
"next",
"previous",
"submit_early",
"none"
],
"type": "string",
"default": "none",
"description": "Navigation or submission action after selecting choice"
},
"choice": {
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string",
"description": "Letter of the answer choice to select"
},
"flag_for_review": {
"type": "boolean",
"description": "Whether to toggle review flag on this question"
}
}
}
}get_exam_suite_overviewAnswer
Inspect the Ultrasound Physics SPI study suite overview, active section, available study tabs, and exam modes.
View tool JSON
{
"name": "get_exam_suite_overview",
"kind": "answer",
"impl": "imperative",
"description": "Inspect the Ultrasound Physics SPI study suite overview, active section, available study tabs, and exam modes.",
"inputSchema": {
"type": "object",
"properties": {}
}
}get_question_solutionAnswer
Retrieve comprehensive solution details, option breakdown, and physics explanation for a selected question.
View tool JSON
{
"name": "get_question_solution",
"kind": "answer",
"impl": "imperative",
"description": "Retrieve comprehensive solution details, option breakdown, and physics explanation for a selected question.",
"inputSchema": {
"type": "object",
"required": [
"prompt_snippet"
],
"properties": {
"prompt_snippet": {
"type": "string",
"description": "Exact prompt text or keyword identifying the question"
}
}
}
}get_tab_contentAnswer
Retrieve current study section details, headings, active metrics, and available sub-features from the visible view.
View tool JSON
{
"name": "get_tab_content",
"kind": "answer",
"impl": "imperative",
"description": "Retrieve current study section details, headings, active metrics, and available sub-features from the visible view.",
"inputSchema": {
"type": "object",
"properties": {}
}
}navigate_viewAction
Switch between primary Ultrasound Physics platform views including Mock Exams, Q-Bank, Mastery, Live Review, Harvey AI, and Card Zip.
View tool JSON
{
"name": "navigate_view",
"kind": "act",
"impl": "imperative",
"description": "Switch between primary Ultrasound Physics platform views including Mock Exams, Q-Bank, Mastery, Live Review, Harvey AI, and Card Zip.",
"inputSchema": {
"type": "object",
"required": [
"view"
],
"properties": {
"view": {
"enum": [
"mock_exams",
"q_bank",
"mastery",
"kokoro_82m",
"live_review",
"songs",
"harvey_ai",
"expert_qa",
"card_zip",
"cohort",
"settings"
],
"type": "string",
"description": "Target view or mode on the platform"
}
}
}
}search_questionsAnswer
Search and filter ARDMS SPI ultrasound physics questions by keyword, domain category, and difficulty level from the question vault.
View tool JSON
{
"name": "search_questions",
"kind": "answer",
"impl": "imperative",
"description": "Search and filter ARDMS SPI ultrasound physics questions by keyword, domain category, and difficulty level from the question vault.",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "integer",
"default": 10,
"description": "Maximum number of questions to return"
},
"query": {
"type": "string",
"description": "Keyword or concept search term (e.g. Doppler, Snell, Impedance, Cavitation)"
},
"domain": {
"enum": [
"all",
"wave_physics",
"transducers",
"doppler_hemodynamics",
"safety_bioeffects",
"artifacts_optimization",
"formulas_math"
],
"type": "string",
"description": "Filter by SPI exam domain"
},
"difficulty": {
"enum": [
"all",
"fundamental",
"registry",
"advanced"
],
"type": "string",
"description": "Filter by difficulty rating"
}
}
}
}start_mock_examAction
Initialize a timed ARDMS SPI board mock exam session in 20-question sprint, 110-question standard board mock, or 165-question master bank mode.
View tool JSON
{
"name": "start_mock_exam",
"kind": "act",
"impl": "imperative",
"description": "Initialize a timed ARDMS SPI board mock exam session in 20-question sprint, 110-question standard board mock, or 165-question master bank mode.",
"inputSchema": {
"type": "object",
"properties": {
"mode": {
"enum": [
"sprint_20q",
"board_mock_110q",
"master_bank_165q"
],
"type": "string",
"default": "sprint_20q",
"description": "Exam simulation mode to initialize"
}
}
}
}switch_study_tabAction
Switch the active study section between Mock Exams, Q-Bank, Mastery, Kokoro 82M, Live Review, Songs, Harvey AI, Expert Q&A, Card Zip, Cohort, or Settings.
View tool JSON
{
"name": "switch_study_tab",
"kind": "act",
"impl": "imperative",
"description": "Switch the active study section between Mock Exams, Q-Bank, Mastery, Kokoro 82M, Live Review, Songs, Harvey AI, Expert Q&A, Card Zip, Cohort, or Settings.",
"inputSchema": {
"type": "object",
"required": [
"tab_name"
],
"properties": {
"tab_name": {
"enum": [
"MOCK EXAMS",
"Q-BANK",
"MASTERY",
"KOKORO 82M",
"LIVE REVIEW",
"SONGS",
"HARVEY AI",
"EXPERT Q&A",
"CARD ZIP",
"COHORT",
"SETTINGS"
],
"type": "string",
"description": "The name of the target study tab."
}
}
}
}