Skip to content
LangChain

NET Genium for LangChain

com.netgenium/instance

Read and write the data and applications of your NET Genium instance; read the framework docs.

client:LangChain transport:streamable-http

Install NET Genium in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "instance": {
            "transport": "streamable_http",
            "url": "https://{instance}.netgenium.online/api.aspx",
        }
})

tools = await client.get_tools()

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

NET Genium in other clients