Skip to content
LangChain

ABAPilot for LangChain

io.github.nicohern/abapilot-mcp

ABAP MCP connector for SAP ECC and on-premise S/4HANA. Requires a licensed ABAPilot backend.

client:LangChain transport:stdio runtime:npm

Install ABAPilot in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ABAPilot in other clients