Skip to the content.

MCP via curl

Call the Velip MCP server directly with JSON-RPC over HTTP.

Endpoint:

POST https://vox20.velip.com.br/mcpserver/velip
Authorization: Bearer YOUR_TOKEN_30_CHARS
Content-Type: application/json

Health check (no auth)

curl https://vox20.velip.com.br/mcpserver/velip/health

List tools

curl -X POST 'https://vox20.velip.com.br/mcpserver/velip' \
  -H 'Authorization: Bearer YOUR_TOKEN_30_CHARS' \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Call a tool

curl -X POST 'https://vox20.velip.com.br/mcpserver/velip' \
  -H 'Authorization: Bearer YOUR_TOKEN_30_CHARS' \
  -H 'Content-Type: application/json' \
  -d '{
    "jsonrpc": "2.0",
    "id": 2,
    "method": "tools/call",
    "params": {
      "name": "send_sms",
      "arguments": {
        "dest": "11999999999",
        "text": "Test via curl"
      }
    }
  }'

Protocol notes

More examples

See individual tool pages under tools/ — each includes a ready-to-run tools/call payload.