Skip to content
LangChain

Rawg for LangChain

io.github.pipeworx-io/rawg

RAWG MCP — wraps the RAWG video games database API (rawg.io)

client:LangChain transport:streamable-http

Install Rawg in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "rawg": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/rawg/mcp",
        }
})

tools = await client.get_tools()

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

Rawg in other clients