Custom MCP clients
Integrate any MCP-compatible agent with the Velip server.
The Velip MCP server implements the Model Context Protocol over Streamable HTTP. Any client that supports this transport can connect.
Connection parameters
| Parameter | Value |
|---|---|
| URL | https://vox20.velip.com.br/mcpserver/velip |
| Auth | Authorization: Bearer <30-char-token> |
| Protocol | JSON-RPC 2.0 (tools/list, tools/call, …) |
Official resources
- MCP specification
- MCP SDKs — Python, TypeScript, etc.
Typical integration flow
- Connect to the MCP endpoint with your Bearer token.
- Call
tools/listto discover allowed tools (filtered by permissions). - Call
tools/callwithnameandargumentsmatching the tool reference. - Parse the
{success, ...}payload returned by each tool.
LangGraph / autonomous agents
Velip autonomous agents can attach this MCP server as an external tool source. Configure the same URL and Bearer token in your agent’s MCP client settings. The agent runtime handles tools/list and routing.
REST fallback
If your stack does not support MCP yet, use the REST API v2 directly — same account, same tokens, same business logic.