Skip to content
LangChain

CDT Express by Riskthinking.AI for LangChain

io.github.riskthinking/cdt-express-mcp

Interact with climate metrics via Riskthinking.AI's CDT Express API in supported AI chat experiences

client:LangChain transport:streamable-http runtime:mcpb

Install CDT Express by Riskthinking.AI in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cdt-express-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.riskthinking.ai/mcp",
        }
})

tools = await client.get_tools()

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

CDT Express by Riskthinking.AI in other clients