Skip to content
LangChain

Indic Normalize for LangChain

io.github.guptaprakhariitr/indic-normalize-mcp

Indic transliteration plus Indian name, address, PIN, PAN, GSTIN normalization.

client:LangChain transport:streamable-http

Install Indic Normalize in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "indic-normalize-mcp": {
            "transport": "streamable_http",
            "url": "https://indic-normalize-mcp.atlasword.workers.dev/mcp",
        }
})

tools = await client.get_tools()

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

Indic Normalize in other clients