Skip to content
LangChain

Type Atlas for LangChain

io.github.tyler-mitchell/type-atlas

Editor-grade TypeScript, Markdown, and JSON intelligence for coding agents.

client:LangChain transport:stdio runtime:npm

Install Type Atlas in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Type Atlas in other clients