Skip to content
LangChain

landing for LangChain

io.github.ryudi84/landing

MCP server for generating production-ready HTML landing pages.

client:LangChain transport:stdio runtime:npm

Install landing in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "landing": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "landing-forge-mcp"],
        }
})

tools = await client.get_tools()

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

landing in other clients