vocab-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vocab-mcpsave the word 'ubiquitous' to my GRE deck"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
vocab-mcp
A vocabulary-bank MCP server. Use it from Claude Desktop (or any MCP host) to collect unfamiliar words while you read or chat, organise them into decks, review them on a spaced-repetition schedule, enrich them with definitions and examples, and even hear them pronounced — all stored locally on your machine.
Features
Save while you read. Hand any word to Claude — it saves the spelling, definition, phonetic, example, source sentence, and tags.
Spaced repetition. Pure-Python SM-2 algorithm tracks mastery and the next review date for each word.
Multiple decks. Group words by topic, exam, language, or project. The same word can live in different decks with different definitions.
Quizzes that adapt. Multiple-choice, fill-in-the-blank, and definition-match. Claude (the host) writes the questions itself — no API key needed.
Content enrichment.
enrich_wordfills in definition / phonetic / part-of-speech / synonyms / antonyms. By default Claude does it from its own knowledge; opt into the freedictionaryapi.devlookup withuse_api=True.Pronunciation.
pronounce_wordreturns an MP3 audio block via gTTS (multilingual, no API key, cached locally).MCP resources & prompts. Browse decks, due lists, and stats as
vocab://...resources; trigger a daily review or vocab capture from a passage with one prompt.
Related MCP server: multilingual-dictionary-mcp
Install
pip install vocab-mcp # core only
pip install "vocab-mcp[tts]" # + gTTS pronunciations
pip install "vocab-mcp[enrich]" # + dictionaryapi.dev lookup
pip install "vocab-mcp[all]" # everythingPython 3.10+. macOS / Linux / Windows.
Configure Claude Desktop
Edit (or create) ~/Library/Application Support/Claude/claude_desktop_config.json
on macOS — equivalent paths exist on Windows and Linux:
{
"mcpServers": {
"vocab": {
"command": "vocab-mcp"
}
}
}Restart Claude Desktop fully (⌘Q on macOS). The new tools should appear in the tools panel.
If vocab-mcp isn't on your PATH (e.g. you installed into a conda env), use
the absolute path:
{
"mcpServers": {
"vocab": {
"command": "/path/to/python",
"args": ["-m", "vocab_mcp"]
}
}
}Tool / Resource / Prompt reference
Tools
Tool | Purpose |
| Save one word into a deck. |
| Save many words at once. |
| Patch existing fields on a word. |
| Get definition / phonetic / POS / synonyms / antonyms. |
| Synthesize a pronunciation MP3 (requires |
| Browse a deck. |
| Manage decks. |
| Review flow. |
Resources
vocab://decks— index of all decksvocab://decks/{name}— full contents of a deckvocab://decks/{name}/due— words due in a deckvocab://decks/{name}/stats— per-deck statsvocab://stats— library-wide stats
Prompts
daily_review(deck, limit)— start a review sessioncapture_vocab(passage, deck)— extract candidate words from a passagequiz_session(deck, count, quiz_type)— ad-hoc quiz session
Multi-deck workflow
> "create a deck called gre"
> "I'm reading <passage>. Save any high-utility words to gre."
> "what's due in gre today?"
> "quiz me on 10 gre words"
> "show me library stats"Data location
Everything lives at ~/.vocab-mcp/:
~/.vocab-mcp/
├── vocab.db # SQLite database
└── audio/ # cached pronunciation MP3sOverride with VOCAB_DATA_DIR=/some/dir (or just the database path with
VOCAB_DB_PATH=/some/file.db).
The database is per-user, local, and never uploaded anywhere. Two users on the same machine using different OS accounts each get their own DB.
Development
git clone https://github.com/Code-byte404/vocab-mcp
cd vocab-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
ruff check .
pytestCI runs the same checks across Python 3.10–3.12 on Ubuntu and macOS.
Contributing
See CONTRIBUTING.md. Issues and PRs welcome — please file an issue before sending large changes.
License
MIT.
This server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that provides read access to your cloud storage providers, bank accounts and more.
Personal knowledge base MCP server with semantic search, auto-categorization, metadata extraction
An MCP memory server. One memory your agents share — across models, devices and apps.
An MCP server for deep research or task groups
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceVocabulary intelligence MCP server — 162K words, 47 languages, definitions, IPA pronunciation, etymology, translations, and daily lessons. 19 tools for AI agents.16 npm1MIT
- FlicenseAqualityDmaintenanceAn MCP server for multilingual dictionary lookups with word relations such as synonyms, antonyms, and definitions, leveraging ConceptNet, Wiktionary, and Datamuse APIs.284-
- AlicenseAqualityDmaintenanceAn MCP server that connects to Anki for card review and creation, featuring automatic date-based organization of new cards.48 npm1MIT
- AlicenseNot gradedqualityCmaintenanceA spaced repetition flashcard MCP server using the FSRS-5 algorithm that provides interactive card review, text-to-speech, and image support.9 npmMIT