Skip to content
LangChain

TerraVision for LangChain

io.github.patrickchugh/terravision

Cloud architecture diagrams generated from terraform plan, with official AWS, Azure, GCP icons

client:LangChain transport:stdio runtime:pypi

Install TerraVision in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "terravision": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["terravision"],
        }
})

tools = await client.get_tools()

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

TerraVision in other clients