Velora MCP — public demo

This is a free, always-on demo of Velora's agentic-commerce MCP toolkit, hosted on Vercel Hobby. It is not the production server — that backend is paused on purpose (Google Cloud Run cost). Nothing here touches real business data.

Endpoints

How each tool behaves

Purevalidate_cuit runs the real AFIP check-digit algorithm against whatever you send it. Read — tools that only look things up return a fixed, fictional dataset ("Almacén Demo SRL"), always labeled [DEMO] with _demo: true. Refuse — the 28 tools that would emit a real invoice, move real money, send a real WhatsApp message, or write a real database row return isError: true with an honest explanation instead of a fabricated result.

Try it

This is a real request/response pair against the live endpoint above — copy it into a terminal to run it yourself:

curl -s https://tools.somosvelora.com/api/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "MCP-Protocol-Version: 2025-06-18" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"validate_cuit","arguments":{"cuit":"20-12345678-6"}}}'

Response:

event: message
data: {"result":{"content":[{"type":"text","text":"{\"valid\":true,\"normalized\":\"20123456786\",\"formatted\":\"20-12345678-6\",\"prefix\":\"20\",\"body\":\"12345678\",\"checkDigit\":\"6\",\"personType\":\"fisica_masculina\",\"personTypeDescription\":\"Persona física (masculino).\"}"}],"isError":false},"jsonrpc":"2.0","id":1}

Source: github.com/crossi-dev/velora-mcp-demo