Skip to content
LangChain

glyphic for LangChain

io.github.ms-teja/glyphic

Generate 18 diagram types from structured JSON natively. Built for LLMs and agents.

client:LangChain transport:stdio runtime:npm

Install glyphic in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "glyphic": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@glyphicjs/mcp-server"],
        }
})

tools = await client.get_tools()

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

glyphic in other clients