Skip to content
LangChain

jisho mcp for LangChain

io.github.mrfentmen/jisho-mcp

Use this MCP server to Jisho, the Japanese English dictionary. Words, kanji, readings, and...

client:LangChain transport:stdio runtime:npm

Install jisho mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "jisho-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "jisho-mcp"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

jisho mcp in other clients