Skip to content
LangChain

link followability for LangChain

com.handsofflinks/link-followability

Check if a link on a live page is followable: rel tokens, meta robots and X-Robots-Tag

client:LangChain transport:streamable-http tools:1

Install link followability in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "link-followability": {
            "transport": "streamable_http",
            "url": "https://handsofflinks-mcp.lipmichal.workers.dev",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

link followability in other clients