Skip to content
LangChain

Bhived MCP for LangChain

io.github.artkeyai/bhived-mcp

Shared knowledge graph, skills, and tool discovery for AI agents through the Model Context Protocol.

client:LangChain transport:stdio runtime:npm

Install Bhived MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Bhived MCP in other clients