Skip to content
LangChain

filechanger for LangChain

io.filechanger/filechanger

Convert documents between text formats (markdown, html, and more) via the FileChanger API.

client:LangChain transport:stdio runtime:npm

Install filechanger in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

filechanger in other clients