exergynet for LangChain
io.github.ezumba/exergynet
Read-only ExergyNet MCP lookups and compute-cost estimates; write settlement is disabled.
client:LangChain
transport:stdio
runtime:npm
Install exergynet in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"exergynet": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "exergynet-mcp-server"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs