Skip to content
LangChain

Mastheads for LangChain

app.mastheads/newsroom

Read and write your own AI newsroom: articles, their sources, the checks, the editor of record.

client:LangChain transport:streamable-http

Install Mastheads in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "newsroom": {
            "transport": "streamable_http",
            "url": "https://api.mastheads.app/v1/mcp",
        }
})

tools = await client.get_tools()

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

Mastheads in other clients