oe mcp for LangChain
io.github.enthrium/oe-mcp
Connect any AI coding app to enterprise data sources. One binary, one JSON config.
client:LangChain
transport:stdio
runtime:npm
Install oe mcp in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"oe-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@openenthrium/oe-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs