Skip to content
LangChain

estimate template for LangChain

io.github.theluckystrike/estimate-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 estimate template in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "estimate-template": {
            "transport": "streamable_http",
            "url": "https://mcp.zovo.one/mcp/estimate-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

estimate template in other clients