Skip to content
LangChain

Quotable for LangChain

io.github.pipeworx-io/quotable

Quotable MCP — wraps the Quotable dataset (free, no auth)

client:LangChain transport:streamable-http

Install Quotable in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Quotable in other clients