Skip to content
LangChain

docs mcp for LangChain

io.github.shreyas-profile/docs-mcp

Vector RAG store for Word/Excel/PDF/PowerPoint. Break-even pricing, $5 per 5,700 pages.

client:LangChain transport:streamable-http

Install docs mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "docs-mcp": {
            "transport": "streamable_http",
            "url": "https://docs.regiq.in/api/mcp",
        }
})

tools = await client.get_tools()

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

docs mcp in other clients