Vocab Voyage MCP Server

SAT/ISEE/SSAT/GRE/GMAT/LSAT/PSAT vocab tools. 7 MCP tools + UI widgets. Hosted, no install.

Remote serverstreamable-httpPython

What is the Vocab Voyage MCP server?

SAT/ISEE/SSAT/GRE/GMAT/LSAT/PSAT vocab tools. 7 MCP tools + UI widgets. Hosted, no install. The vocab voyage mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

The official public mirror of the Vocab Voyage Model Context Protocol server — 20 tools + 17 interactive widgets for vocabulary learning and standardized test prep (ISEE, SSAT, SAT, PSAT, GRE, GMAT, LSAT).

Its toolset

Everything the assistant can do here goes through one of these:

  • get_word_of_the_day — Returns today's vocabulary Word of the Day, optionally scoped to a test family
  • get_course_word_list — Get a sample of vocabulary words from a specific Vocab Voyage course
  • list_courses — Lists all 13 Vocab Voyage courses with their slugs and descriptions
  • explain_word_in_context — Explain what a word means inside a specific sentence
  • play_game — Launches one of 11 vocabulary mini-games (word_match, spelling_bee, speed_round, synonym_showdown, word_scramble, fill_in_blank, context_clues
  • set_persona — Switch agent bias between student, parent, tutor, or explorer
  • get_recommended_next_action — Returns a one-line recommendation for what the user should do next
  • list_starter_prompts — Lists the 6 MCP prompts (vocab_kickoff, test_prep_quiz, session_debrief, …) for hosts that don't surface prompts/list
  • record_word_result — Auth: log a per-card answer (correct or incorrect)
  • record_session_complete — Auth: log session totals and award XP
  • award_game_xp — Auth: grant bonus XP from a completed mini-game round
  • mark_word_known — Auth: add a word to the user's queue or mastered list

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Vocab Voyage's toolset — get_word_of_the_day, get_course_word_list, list_courses and 11 more — is a fair guide to whether it matches your workflow. It is maintained by jaideepdhanoa; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Vocab Voyage.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the vocab voyage mcp server does with a few real requests.

Available tools

ToolWhat it does
get_word_of_the_dayReturns today's vocabulary Word of the Day, optionally scoped to a test family.
get_course_word_listGet a sample of vocabulary words from a specific Vocab Voyage course.
list_coursesLists all 13 Vocab Voyage courses with their slugs and descriptions.
explain_word_in_contextExplain what a word means inside a specific sentence.
play_gameLaunches one of 11 vocabulary mini-games (word_match, spelling_bee, speed_round, synonym_showdown, word_scramble, fill_in_blank, context_clues, word_guess, picture_match, crossword, word_search). Per-answer events flow t
set_personaSwitch agent bias between student, parent, tutor, or explorer.
get_recommended_next_actionReturns a one-line recommendation for what the user should do next.
list_starter_promptsLists the 6 MCP prompts (vocab_kickoff, test_prep_quiz, session_debrief, …) for hosts that don't surface prompts/list.
record_word_resultAuth: log a per-card answer (correct or incorrect).
record_session_completeAuth: log session totals and award XP.
award_game_xpAuth: grant bonus XP from a completed mini-game round.
mark_word_knownAuth: add a word to the user's queue or mastered list.
mark_word_difficultAuth: flag a word as needing more review.
update_adaptive_levelAuth: adjust the user's adaptive difficulty floor/ceiling.

How to install the Vocab Voyage MCP server

{
  "mcpServers": {
    "vocab-voyage": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/mcp-server"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Vocab Voyage to get word of the day.
  • Use Vocab Voyage to get course word list.
  • Use Vocab Voyage to list courses.

Frequently asked questions

It connects Vocab Voyage to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_word_of_the_day, get_course_word_list, list_courses, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Vocab Voyage directly.