Skip to content
LangChain

fetchmcp for LangChain

io.github.labtools-studio/fetchmcp

Drop-in fetch MCP: clean Markdown from any URL, with JS rendering and anti-bot.

client:LangChain transport:stdio runtime:npm

Install fetchmcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "fetchmcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@labtoolsstudio/fetchmcp"],
        }
})

tools = await client.get_tools()

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

fetchmcp in other clients