Skip to content
LangChain

OmniGlyph for LangChain

io.github.aidi1723/omniglyph

Local symbol ground truth MCP server for Unicode lookup and code-symbol linting.

client:LangChain transport:stdio runtime:pypi

Install OmniGlyph in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "omniglyph": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["omniglyph"],
        }
})

tools = await client.get_tools()

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

OmniGlyph in other clients