Skip to content
LangChain

FixedLink for LangChain

link.fixed/fixedlink

Make and manage short links on your own domain, with analytics and routing rules.

client:LangChain transport:streamable-http

Install FixedLink in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "fixedlink": {
            "transport": "streamable_http",
            "url": "https://fixed.link/api/mcp",
        }
})

tools = await client.get_tools()

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

FixedLink in other clients