Skip to content
LangChain

Thunder Compute for LangChain

io.github.thunder-compute/thunder-compute

GPU cloud platform — create, manage, and monitor instances, snapshots, SSH keys, and billing.

client:LangChain transport:streamable-http

Install Thunder Compute in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "thunder-compute": {
            "transport": "streamable_http",
            "url": "https://api.thundercompute.com:8443/mcp",
        }
})

tools = await client.get_tools()

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

Thunder Compute in other clients