Skip to content
LangChain

GuniWeb SAP MCP for LangChain

io.github.guniweb/guniweb-sap-mcp

SAP S/4HANA and ECC: OData V2/V4, IDoc and RFC/BAPI for n8n and other MCP clients

client:LangChain transport:stdio runtime:npm

Install GuniWeb SAP MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

GuniWeb SAP MCP in other clients