Skip to content
LangChain

linkrescue mcp for LangChain

io.github.carsonroell-debug/linkrescue-mcp

Broken link detection with affiliate tracking, revenue loss estimation, and fixes

client:LangChain transport:stdio runtime:pypi

Install linkrescue mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "linkrescue-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["linkrescue-mcp"],
        }
})

tools = await client.get_tools()

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

linkrescue mcp in other clients