Skip to content
LangChain

genexus for LangChain

io.github.lennix1337/genexus

Read, edit, and analyze GeneXus 18 KB objects from Claude, Cursor, and AI agents.

client:LangChain transport:stdio runtime:npm

Install genexus in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

genexus in other clients