loading…
Search for a command to run...
loading…
Provides AI agents with direct access to local Yomitan dictionary databases for offline Japanese vocabulary lookups, kanji searches, and sentence tokenization.
Provides AI agents with direct access to local Yomitan dictionary databases for offline Japanese vocabulary lookups, kanji searches, and sentence tokenization. It leverages the Yomitan browser extension's API to enable rich dictionary interactions and Anki flashcard field generation.
A Model Context Protocol (MCP) server that provides AI agents with direct access to your local Yomitan dictionary databases.
This MCP server connects to the Yomitan browser extension's existing Native Messaging HTTP API (typically running on localhost:19633). It allows any MCP-compatible client (like OpenClaw, Claude Desktop, or Cursor) to perform rich dictionary lookups instantly, completely offline, and without any browser automation.
Managed by GoRakuDo.
The server exposes 6 tools:
lookup — Search for a vocabulary word and return definitions, readings, and tags. (Optimized for AI context)kanji — Search for detailed information about a single Kanji character.tokenize — Parse a Japanese sentence into tokens and dictionary entries.anki_discover — (New in v1.2.0) Auto-detect which Anki field markers (like {expression}, {glossary}) are valid in your specific Yomitan setup.anki_fields — Generate populated Anki flashcard fields based on your Yomitan templates.status — Check the connection status and version of your Yomitan backend.http://127.0.0.1:19633). You can run this MCP server directly using npx (no installation required):
npx yomitan-mcp-server
Add the following configuration to your MCP client's configuration file (e.g., mcp_config.json, claude_desktop_config.json):
{
"mcpServers": {
"yomitan-mcp": {
"command": "npx",
"args": [
"-y",
"yomitan-mcp-server@latest"
]
}
}
}
To use anki_fields effectively:
anki_discover first to see which markers (e.g., expression, reading, glossary, single-glossary-DictionaryName) are available in your setup.anki_discover.localhost.ECONNREFUSED): Ensure the browser with Yomitan is running. Check that "Enable Yomitan API" is turned on in the extension's Advanced Settings.anki_discover to verify your available markers.Built by GoRakuDo. Licensed under Mozilla Public License Version 2.0.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"yomitan-mcp-server": {
"command": "npx",
"args": []
}
}
}