Skip to content
LangChain

brickpulse mcp for LangChain

io.github.bobross2020/brickpulse-mcp

Query LEGO set details, retirement dates, deals, and price history from BrickPulse.ai

client:LangChain transport:streamable-http tools:5

Install brickpulse mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "brickpulse-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.brickpulse.ai/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

brickpulse mcp in other clients