Skip to content
LangChain

quote template for LangChain

io.github.theluckystrike/quote-template

Quotes and estimates: VAT line items, a validity date, an A4 PDF, accept makes an invoice.

client:LangChain transport:streamable-http runtime:mcpb tools:12

Install quote template in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "quote-template": {
            "transport": "streamable_http",
            "url": "https://mcp.zovo.one/mcp/quote-template",
        }
})

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

quote template in other clients