Skip to content
LangChain

Sothebys for LangChain

io.github.pipeworx-io/sothebys

Sotheby's MCP — realized auction prices from sothebys.com.

client:LangChain transport:streamable-http

Install Sothebys in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Sothebys in other clients