Jisho MCP
Enables Japanese word lookup and search using the Jisho.org dictionary, providing tools to search entries and retrieve exact word definitions with JLPT levels and parts of speech.
README
Jisho MCP
A lightweight Model Context Protocol (MCP) server for Jisho.org, the popular Japanese-English dictionary.
<p align="center"> <img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="Python 3.10+"> <img src="https://img.shields.io/badge/FastMCP-2.0+-orange.svg" alt="FastMCP 2.0+"> <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License: MIT"> </p>
<p align="center"> <img src="assets/tanuki.png" alt="Tanuki mascot" width="300"> </p>
Look up Japanese words, readings, JLPT levels, and definitions directly inside MCP-compatible AI clients — or let your agent search for you.
Features
- Word search with all Jisho filters (
#jlpt-n5,#verb, wildcards, etc.) - Exact lookup by word slug (e.g.
食べる) - Compact responses (Wikipedia/dbpedia padding stripped, linguistic fields like
see_also,antonyms,sourcepreserved) - Read-only resources:
jisho://word/{keyword}andjisho://search/{keyword}
Quick start
No installation required. You only need uv and Python >= 3.10.
Claude Code
claude mcp add jisho -- uvx --from git+https://github.com/giuliocapecchi/jisho-mcp jisho-mcp
Other MCP clients (Claude Desktop, Codex, OpenCode, …)
Add the following block to your client's MCP config file:
{
"mcpServers": {
"jisho": {
"command": "uvx",
"args": ["--from", "git+https://github.com/giuliocapecchi/jisho-mcp", "jisho-mcp"]
}
}
}
Common config locations:
| Client | Config file |
|---|---|
| Claude Desktop | claude_desktop_config.json |
| Codex (OpenAI) | ~/.codex/config.json |
| OpenCode | opencode.json |
Permanent install
If you prefer a system-wide command:
uv tool install git+https://github.com/giuliocapecchi/jisho-mcp
Then run directly:
jisho-mcp
Or add to your MCP config:
{
"mcpServers": {
"jisho": {
"command": "jisho-mcp"
}
}
}
Development
git clone https://github.com/giuliocapecchi/jisho-mcp.git
cd jisho-mcp
uv sync
uv run jisho-mcp
Tools
| Tool | Description |
|---|---|
search_words(keyword, page=1) |
Search dictionary entries. |
get_word(slug) |
Fetch the entry with the exact slug, or None if no exact match. |
Example
get_word("水") returns:
{
"slug": "水",
"is_common": true,
"jlpt": ["jlpt-n5"],
"japanese": [{"word": "水", "reading": "みず"}],
"senses": [
{
"english_definitions": ["water (esp. cool or cold)"],
"parts_of_speech": ["Noun"],
"see_also": ["湯 ゆ"]
},
{
"english_definitions": ["fluid (esp. in an animal tissue)", "liquid"],
"parts_of_speech": ["Noun"]
}
]
}
License
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.