Skip to content
LangChain

markdown notes mcp for LangChain

io.github.narashiman-k/markdown-notes-mcp

Convert PDF, Word, Excel, PowerPoint, EPUB and images to Markdown locally, with no upload.

client:LangChain transport:stdio runtime:npm

Install markdown notes mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "markdown-notes-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "suprasuta-markdown-mcp"],
        }
})

tools = await client.get_tools()

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

markdown notes mcp in other clients