Skip to content
LangChain

DaedalMap World Development Indicators for LangChain

com.daedalmap/world-development-indicators

World Bank World Development Indicators: curated country-year economy, health, education and more.

client:LangChain transport:streamable-http

Install DaedalMap World Development Indicators in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "world-development-indicators": {
            "transport": "streamable_http",
            "url": "https://app.daedalmap.com/mcp/world_bank_wdi",
        }
})

tools = await client.get_tools()

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

DaedalMap World Development Indicators in other clients