Skip to content
LangChain

heu mcp for LangChain

io.github.lucav21/heu-mcp

HEU Legal e-signature MCP: manage HEU documents and PDFs, prompt signers, download PDFs.

client:LangChain transport:stdio runtime:pypi

Install heu mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

heu mcp in other clients