Skip to content
LangChain

GlanceAI Fashion MCP for LangChain

com.glance/glanceai-fashion

Fashion product discovery and virtual try-on via the Glance catalog

client:LangChain transport:streamable-http

Install GlanceAI Fashion MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "glanceai-fashion": {
            "transport": "streamable_http",
            "url": "https://glance.com/mcp",
        }
})

tools = await client.get_tools()

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

GlanceAI Fashion MCP in other clients