LiftMCP for LangChain
com.liftmcp/platform
Makes websites AI-agent-ready via MCP. Each property gets its own hosted MCP server.
client:LangChain
transport:streamable-http
Install LiftMCP in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"platform": {
"transport": "streamable_http",
"url": "https://{property_slug}.mcp-dev.liftmcp.com/",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs