Skip to content
LangChain

check for LangChain

dev.getstub/check

Verify what an AI agent did for someone, and what commercial influence the operator disclosed.

client:LangChain transport:stdio runtime:npm

Install check in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

check in other clients