Skip to content
LangChain

hostaway for LangChain

io.github.mattlong-plux/hostaway

Hostaway PMS: reservations, listings, calendars, financials, and guest messaging.

client:LangChain transport:stdio runtime:npm

Install hostaway in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hostaway": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@matt-long-plux/hostaway-mcp"],
        }
})

tools = await client.get_tools()

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

hostaway in other clients