Skip to content
LangChain

viberaven for LangChain

io.github.ohad6k/viberaven

VibeRaven MCP for production-readiness checks and Launch Autopilot next actions

client:LangChain transport:stdio runtime:npm

Install viberaven in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

viberaven in other clients