Skip to content
LangChain

Zenquotes for LangChain

io.github.pipeworx-io/zenquotes

ZenQuotes MCP — wraps ZenQuotes API (free, no auth) with a dummyjson

client:LangChain transport:streamable-http

Install Zenquotes in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Zenquotes in other clients