Server data from the Official MCP Registry
SAT/ISEE/SSAT/GRE/GMAT/LSAT/PSAT vocab tools. 7 MCP tools + UI widgets. Hosted, no install.
SAT/ISEE/SSAT/GRE/GMAT/LSAT/PSAT vocab tools. 7 MCP tools + UI widgets. Hosted, no install.
Remote endpoints: streamable-http: https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/mcp-server?ref=mcp_registry
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
Endpoint verified · Open access · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-jaideepdhanoa-vocab-voyage": {
"url": "https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/mcp-server?ref=mcp_registry"
}
}
}From the project's GitHub README.
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
This is the first public release. It already ships with:
get_definition, generate_quiz, study_plan_preview — manifest at /.well-known/mcp/apps.jsonmcp.read, mcp.tools, profile.read, progress.read/.well-known/oauth-protected-resource/ask endpoint for natural-language queries with optional SSE streamingAccept: text/markdown)/schemamap.xml, /feeds/*.jsonl)error_code values agents can branch onX-RateLimit-Limit, X-RateLimit-Remaining, Retry-After)Vocab Voyage exposes 7 tools any MCP-compatible AI assistant can call:
| Tool | Purpose | UI widget |
|---|---|---|
get_word_of_the_day | Today's vocabulary word, optionally scoped to a test family | — |
get_definition | Definition, part of speech, example sentence, synonyms/antonyms | ui://vocab-voyage/definition |
generate_quiz | Multiple-choice quiz (1–10 questions) for any test family | ui://vocab-voyage/quiz |
get_course_word_list | Sample words from a specific Vocab Voyage course | — |
list_courses | All 13 test-prep courses with slugs and descriptions | — |
explain_word_in_context | Explain a word inside a specific sentence | — |
study_plan_preview | 7-day, 5-words-per-day sample plan for a target test | ui://vocab-voyage/study-plan |
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.
Add a custom MCP server in Settings → Connectors:
https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/mcp-serveropenclaw skills install vocab-voyage
Use the URL above with transport streamable-http.
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.| Scope | Grants |
|---|---|
mcp.read | Read MCP metadata and public tool results. Required for any MCP usage. |
mcp.tools | Invoke public MCP tools (definition, quiz, courses, study plan). |
profile.read | Read connected user's display name, account type, preferred course. |
progress.read | Read mastery, streaks, and recent sessions for the connected user. |
Full reference (rotation, revocation, error codes): https://vocab.voyage/developers/auth
| Surface | URL |
|---|---|
| Server card | https://vocab.voyage/.well-known/mcp/server-card.json |
| Agent card | https://vocab.voyage/.well-known/agent-card.json |
| MCP Apps manifest | https://vocab.voyage/.well-known/mcp/apps.json |
| OAuth protected resource | https://vocab.voyage/.well-known/oauth-protected-resource |
| OpenAPI | https://vocab.voyage/openapi.json |
| API catalog (linkset) | https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/api-catalog |
NLWeb /ask | https://gponcrussdahcdyrlhcr.supabase.co/functions/v1/nlweb-ask |
| Schemamap | https://vocab.voyage/schemamap.xml |
| llms-full | https://vocab.voyage/llms-full.txt |
mcp-lite + honostreamable-httpThe 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.
| File | Purpose |
|---|---|
server.json | Official MCP Registry manifest (mcp-publisher publish) |
server-card.json | MCP server card published at /.well-known/mcp/server-card.json |
smithery.yaml | Smithery registry manifest |
clawhub.json | OpenClaw / ClawHub skill manifest |
SKILL.md | OpenClaw skill description (markdown) |
SUBMISSION_LINKS.md | Per-channel ?ref= URLs for attribution |
Open https://vocab.voyage/mcp and use the "Try it live" panel — calls hit the same hosted endpoint your AI assistant will use.
MIT — see LICENSE.
Built by the team behind Vocab Voyage, an AI-powered adaptive vocabulary learning platform for grades 1–12 and standardized test prep.
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.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.