Skip to content
LangChain

negirau for LangChain

io.github.sincekmori/negirau

Read-only, anonymous access to the Negirau public API: subjects and their reaction counts.

client:LangChain transport:stdio runtime:npm

Install negirau in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "negirau": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "negirau-mcp"],
        }
})

tools = await client.get_tools()

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

negirau in other clients