Skip to content
LangChain

FlightSweeper for LangChain

app.vercel.flightsweeper-webmcp/public

Anonymous public tools for FlightSweeper. See the published agent boundary before use.

client:LangChain transport:streamable-http tools:4

Install FlightSweeper in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "public": {
            "transport": "streamable_http",
            "url": "https://flightsweeper-webmcp.vercel.app/mcp",
        }
})

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

FlightSweeper in other clients