Skip to content
LangChain

seat intelligence for LangChain

com.rowhint/seat-intelligence

Airline seat quality scores (1-10) with notes. 61+ configs across 10 US airlines.

client:LangChain transport:streamable-http tools:8

Install seat intelligence in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "seat-intelligence": {
            "transport": "streamable_http",
            "url": "https://mcp.rowhint.com/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

seat intelligence in other clients