MCP Hub
Back to servers

Vocab Voyage

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

Registryglama
Updated
Apr 21, 2026

Vocab Voyage MCP Server

Hosted MCP (Model Context Protocol) server providing vocabulary tools for standardized test prep — SAT, ISEE, SSAT, GRE, GMAT, LSAT, PSAT — and general vocabulary learning.

🌐 Hosted endpoint (no install required): https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/mcp-server 📚 Docs & live demo: https://vocab.voyage/mcp 🔐 Auth + scopes reference: https://vocab.voyage/developers/auth 🃏 Server card: https://vocab.voyage/.well-known/mcp/server-card.json 🤖 Agent card: https://vocab.voyage/.well-known/agent-card.json


Listed on

All four launch directories accepted Vocab Voyage at v1.0:

DirectoryStatusListing
Official MCP Registry✅ Livehttps://registry.modelcontextprotocol.io/?q=vocab-voyage
Glama✅ Livehttps://glama.ai/mcp/servers/jaideepdhanoa/vocab-voyage-mcp
Smithery✅ Livehttps://smithery.ai/servers/vocab-voyage/vocab-voyage-mcp
ClawHub✅ Livehttps://clawhub.ai/jaideepdhanoa/vocab-voyage-mcp

What's included in 1.0

This is the first public release. It already ships with:

  • 7 vocabulary tools (definition, quiz, study plan, courses, word-of-the-day, in-context explainer)
  • MCP Apps UI resources for get_definition, generate_quiz, study_plan_preview — manifest at /.well-known/mcp/apps.json
  • Scoped personal tokens with four scopes: mcp.read, mcp.tools, profile.read, progress.read
  • OAuth Protected Resource Metadata at /.well-known/oauth-protected-resource
  • Canonical auth docs at https://vocab.voyage/developers/auth (rotation, revocation, error codes)
  • NLWeb /ask endpoint for natural-language queries with optional SSE streaming
  • Markdown content negotiation on the public REST API, MCP metadata, and API catalog (Accept: text/markdown)
  • Schemamap + JSONL feeds for crawler/agent indexing (/schemamap.xml, /feeds/*.jsonl)
  • Structured JSON errors with stable error_code values agents can branch on
  • Rate limit headers (X-RateLimit-Limit, X-RateLimit-Remaining, Retry-After)

What it does

Vocab Voyage exposes 7 tools any MCP-compatible AI assistant can call:

ToolPurposeUI widget
get_word_of_the_dayToday's vocabulary word, optionally scoped to a test family
get_definitionDefinition, part of speech, example sentence, synonyms/antonymsui://vocab-voyage/definition
generate_quizMultiple-choice quiz (1–10 questions) for any test familyui://vocab-voyage/quiz
get_course_word_listSample words from a specific Vocab Voyage course
list_coursesAll 13 test-prep courses with slugs and descriptions
explain_word_in_contextExplain a word inside a specific sentence
study_plan_preview7-day, 5-words-per-day sample plan for a target testui://vocab-voyage/study-plan

Install

Claude Desktop

Easiest — Settings → Connectors → Add Custom Connector, paste:

https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/mcp-server

Power users — Claude Desktop's claude_desktop_config.json only accepts stdio commands, so use the mcp-remote bridge. Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

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

To use a personal token, add the Authorization header:

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

Restart Claude Desktop. The 7 tools appear in the tool tray. Transport is Streamable HTTP (modern); legacy SSE is not used.

ChatGPT (custom MCP)

Add a custom MCP server in Settings → Connectors:

  • URL: https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/mcp-server
  • Transport: streamable-http
  • Auth: None (anonymous) or Bearer token

OpenClaw

openclaw skills install vocab-voyage

Cursor / Continue / any MCP client

Use the URL above with transport streamable-http.


Authentication

  • Anonymous (default) — Rate limit 60 requests/minute per IP. All public tools work.
  • Personal token — Generate a vv_mcp_… token at https://vocab.voyage/mcp, choose the scopes you need, and pass as Authorization: Bearer vv_mcp_…. Rate limit 600 requests/hour per user. Unlocks personalized tools.

Scopes

ScopeGrants
mcp.readRead MCP metadata and public tool results. Required for any MCP usage.
mcp.toolsInvoke public MCP tools (definition, quiz, courses, study plan).
profile.readRead connected user's display name, account type, preferred course.
progress.readRead mastery, streaks, and recent sessions for the connected user.

Full reference (rotation, revocation, error codes): https://vocab.voyage/developers/auth


Discovery surfaces

SurfaceURL
Server cardhttps://vocab.voyage/.well-known/mcp/server-card.json
Agent cardhttps://vocab.voyage/.well-known/agent-card.json
MCP Apps manifesthttps://vocab.voyage/.well-known/mcp/apps.json
OAuth protected resourcehttps://vocab.voyage/.well-known/oauth-protected-resource
OpenAPIhttps://vocab.voyage/openapi.json
API catalog (linkset)https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/api-catalog
NLWeb /askhttps://gponcrussdahcdyrlhcr.supabase.co/functions/v1/nlweb-ask
Schemamaphttps://vocab.voyage/schemamap.xml
llms-fullhttps://vocab.voyage/llms-full.txt

Architecture

  • Server: TypeScript on Supabase Edge Functions (Deno runtime)
  • Library: mcp-lite + hono
  • Transport: streamable-http
  • Database: PostgreSQL (Supabase) for vocabulary content + per-user state
  • Discovery: RFC 8288 Link headers, RFC 9728 OAuth Protected Resource Metadata, MCP server card, MCP Apps manifest, agent card, schemamap, JSONL feeds

The server source code lives in the main Vocab Voyage application (private repo). This repository is the distribution manifest — it's what registries (MCP Registry, Smithery, ClawHub, Glama) read to list us.


Manifests in this repo

FilePurpose
server.jsonOfficial MCP Registry manifest (mcp-publisher publish)
server-card.jsonMCP server card published at /.well-known/mcp/server-card.json
smithery.yamlSmithery registry manifest
clawhub.jsonOpenClaw / ClawHub skill manifest
SKILL.mdOpenClaw skill description (markdown)
SUBMISSION_LINKS.mdPer-channel ?ref= URLs for attribution

Try it live, no install

Open https://vocab.voyage/mcp and use the "Try it live" panel — calls hit the same hosted endpoint your AI assistant will use.


License

MIT — see LICENSE.

Credits

Built by the team behind Vocab Voyage, an AI-powered adaptive vocabulary learning platform for grades 1–12 and standardized test prep.

Publish to the MCP Registry

This repo includes a server.json manifest. To publish to https://registry.modelcontextprotocol.io/:

brew install mcp-publisher          # macOS / Linux
mcp-publisher login github          # device flow
mcp-publisher publish               # publishes server.json in CWD

Verify:

curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=vocab-voyage"

The namespace io.github.jaideepdhanoa/* is verified via GitHub OAuth — only the owner of that GitHub account can publish under it.

Reviews

No reviews yet

Sign in to write a review