DocuQueue MCP for LangChain
io.github.dvcoolarun/docuqueue-mcp
Generate PDFs from templates via AI chat. Works with Claude, ChatGPT, Cursor, and any MCP client.
client:LangChain
transport:streamable-http
tools:12
Install DocuQueue MCP in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"docuqueue-mcp": {
"transport": "streamable_http",
"url": "https://docuqueue.com/mcp/sse",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs