Skip to content
LangChain

EU VAT Validator (VIES) for LangChain

io.github.apifymcpfactory-droid/eu-vat-validator

Bulk-validates EU VAT numbers against the European Commission's official VIES service.

client:LangChain transport:streamable-http

Install EU VAT Validator (VIES) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "eu-vat-validator": {
            "transport": "streamable_http",
            "url": "https://mcp.apify.com?tools=apifmcpfactory/eu-vat-validator",
        }
})

tools = await client.get_tools()

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

EU VAT Validator (VIES) in other clients