Skip to content
LangChain

three.ws Scenes for LangChain

io.github.nirholas/scene-mcp

Compose a placed 3D diorama from one sentence, export a forged world, browse saved scenes.

client:LangChain transport:stdio runtime:npm

Install three.ws Scenes in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "scene-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@three-ws/scene-mcp"],
        }
})

tools = await client.get_tools()

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

three.ws Scenes in other clients