Skip to content
LangChain

GasPulse for LangChain

io.github.evozim/gas-pulse

High-precision gas fee predictor and block explorer routing oracle.

client:LangChain transport:sse

Install GasPulse in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "gas-pulse": {
            "transport": "streamable_http",
            "url": "https://gas-pulse-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

GasPulse in other clients