Skip to content
LangChain

vtimestamp for LangChain

io.github.vdappdev2/vtimestamp

MCP server for verifying and querying vtimestamp proofs on the Verus blockchain

client:LangChain transport:stdio runtime:npm

Install vtimestamp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

vtimestamp in other clients