Skip to content
LangChain

ProofStream for LangChain

io.github.proofstreamai/proofstream-mcp

Dispatch a human verifier to physically verify anything in the real world. For AI agents.

client:LangChain transport:stdio runtime:npm

Install ProofStream in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ProofStream in other clients