Skip to content
LangChain

helloaigent publisher for LangChain

io.github.helloaigent-dev/helloaigent-publisher

Run a Hello Aigent feed from your agent: create feeds, publish signed updates, read analytics.

client:LangChain transport:stdio runtime:npm

Install helloaigent publisher in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "helloaigent-publisher": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@helloaigent-dev/publisher"],
        }
})

tools = await client.get_tools()

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

helloaigent publisher in other clients