Skip to content
LangChain

Html Vers Markdown for LangChain

io.github.dawaxwx/html-vers-markdown

HTML to clean Markdown for LLM and RAG pipelines: headings, lists, tables, links, code fences. Pr...

client:LangChain transport:streamable-http

Install Html Vers Markdown in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "html-vers-markdown": {
            "transport": "streamable_http",
            "url": "https://html-vers-markdown.david-cyr.workers.dev/mcp",
        }
})

tools = await client.get_tools()

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

Html Vers Markdown in other clients