Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"word-orb": {
"url": "https://mcp.thedailylesson.com/mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Language infrastructure for AI agents. 162,251 words. 47 languages. 240K audio files. Deterministic responses at the edge.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@lotd/word-orb' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @lotd/word-orb against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
A Model Context Protocol server for searching and analyzing arXiv papers
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
ARIS ⚔️ (Auto-Research-In-Sleep) — Lightweight Markdown-only skills for autonomous ML research: cross-model review loops, idea discovery, and experiment automation. No framework, no lock-in — works with Claude Code, Codex, OpenClaw, or any LLM agent.
MCP server that uses arxiv-to-prompt to fetch and process arXiv LaTeX sources for precise interpretation of mathematical expressions in scientific papers.
MCP Security Weekly
Get CVE alerts and security updates for Orb Platform MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Language infrastructure for AI agents. 162,251 words. 47 languages. 240K audio files. Deterministic responses at the edge.
Part of the Orb Platform — dictionary, lessons, and assessments for AI that teaches.
A dictionary API built for AI agents, educational platforms, and robotics. One API call returns:
Runs on Cloudflare Workers + D1. Sub-5ms edge delivery. Same input, same output, every time.
npm install @lotd/word-orb
const { WordOrb } = require('@lotd/word-orb');
const orb = new WordOrb({ apiKey: 'wo_your_api_key' });
// Look up any word
const result = await orb.word('serendipity');
console.log(result.def); // Full definition
console.log(result.ipa); // /ˌsɛɹ.ən.ˈdɪp.ɪ.ti/
console.log(result.etym); // Etymology
console.log(result.langs); // 47-language translations
const { key } = await orb.signup('you@example.com');
// Returns: wo_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
// 50 free lookups per day, upgrade anytime
Add to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"word-orb": {
"url": "https://mcp.thedailylesson.com/mcp"
}
}
}
19 MCP tools across all three Orb Platform products. Works with Claude, Cursor, Windsurf, and any MCP-compatible agent.
Word Orb is one of three products:
| Product | What it does | Scale |
|---|---|---|
| Word Orb | Dictionary + translations + pronunciation | 162,251 words, 47 languages |
| Lesson Orb | Structured lesson plans | 226,725 lesson blocks, 5 phases, 10 archetypes |
| Quiz Orb | Assessment questions | 21,900 interactions, 6 question types |
All three share a knowledge graph with 30,288 connections linking words → lessons → quizzes.
Education Stack bundles all three for $179/mo (21% discount).
new WordOrb(options?)Create a client instance.
| Option | Type | Default | Description |
|---|---|---|---|
apiKey | string | — | Your wo_ API key (get one free) |
baseUrl | string | https://word-orb-api.nicoletterankin.workers.dev | API base URL |
orb.word(word) → Promise<WordResult>Look up any word. Returns definition, pronunciation (IPA), part of speech, etymology, translations across 47 languages, and age-appropriate content.
const data = await orb.word('courage');
// {
// word: 'courage',
// ipa: '/ˈkɜːrɪdʒ/',
// pos: 'noun',
// def: 'Courage is the ability to face fear, danger, or difficulty...',
// etym: 'From Old French "corage," meaning "heart, spirit"...',
// langs: { es: 'coraje', fr: 'courage', de: 'Mut', zh: '勇气', ... },
// tones: { child: '...', teen: '...', adult: '...' }
// }
orb.words() → Promise<WordListResult>Get the full word library listing.
const { count, words } = await orb.words();
console.log(`${count} words available`);
orb.audit(email, words) → Promise<AuditResult>Run a compliance audit on your agent's vocabulary. Returns coverage analysis, age-appropriateness gaps, and a complia