Skip to content
LangChain

The Lott MCP by UnClick for LangChain

io.github.malamutemayhem/thelott

Australian lottery results and jackpots from The Lott. By UnClick.

client:LangChain transport:stdio runtime:npm

Install The Lott MCP by UnClick in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "thelott": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@unclick/thelott-mcp"],
        }
})

tools = await client.get_tools()

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

The Lott MCP by UnClick in other clients