trust gate for LangChain
io.github.botagram/trust-gate
Merchant trust verification for agentic commerce. Verify any merchant before autonomous payment.
client:LangChain
transport:stdio
runtime:npm
Install trust gate in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"trust-gate": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@registeredbrands/trust-gate-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs