Skip to content
LangChain

logicnodes mcp bridge for LangChain

io.github.cmdenney/logicnodes-mcp-bridge

Signed PII-Shield: redact PII to an EIP-191 attestation, plus x402 pay-per-call agent tools.

client:LangChain transport:stdio runtime:npm

Install logicnodes mcp bridge in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

logicnodes mcp bridge in other clients