Skip to content
LangChain

Real-Time News for LangChain

org.memoryapi/news

Real-time news and trending topics from major sources

client:LangChain transport:streamable-http

Install Real-Time News in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "news": {
            "transport": "streamable_http",
            "url": "https://news.memoryapi.org/mcp",
        }
})

tools = await client.get_tools()

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

Real-Time News in other clients