Skip to content
LangChain

helldivers2 mcp for LangChain

io.github.xerno42/helldivers2-mcp

MCP server exposing live Helldivers 2 galactic war data.

client:LangChain transport:streamable-http runtime:npm tools:7

Install helldivers2 mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "helldivers2-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.avengersofsuperearth.com/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

helldivers2 mcp in other clients