Skip to content
LangChain

BetterPost for LangChain

ai.betterpost/server

Finds timely sources across news, social, and the web and writes posts worth publishing.

client:LangChain transport:streamable-http tools:23

Install BetterPost in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "server": {
            "transport": "streamable_http",
            "url": "https://betterpost.ai/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

BetterPost in other clients