Skip to content
LangChain

Bareun — Korean NLP & Spell/Grammar Checking for LangChain

ai.bareun/bareun

Korean NLP MCP server: morphological analysis, tokenization, spell & grammar checking (Bareun)

client:LangChain transport:streamable-http

Install Bareun — Korean NLP & Spell/Grammar Checking in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "bareun": {
            "transport": "streamable_http",
            "url": "https://api.bareun.ai/mcp",
        }
})

tools = await client.get_tools()

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

Bareun — Korean NLP & Spell/Grammar Checking in other clients