Skip to content
LangChain

Veriphone for LangChain

io.github.pipeworx-io/veriphone

Veriphone MCP — wraps the Veriphone phone-validation API (veriphone.io)

client:LangChain transport:streamable-http

Install Veriphone in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "veriphone": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/veriphone/mcp",
        }
})

tools = await client.get_tools()

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

Veriphone in other clients