VeTrade AI Integration Overview
VeTrade exposes a machine-native swap planning surface for AI agents and developer tooling.
What you can do
- request a quote-only plan with routing and warnings
- request a wallet-bound VeChain clause bundle for a specific recipient
- validate a raw bundle by simulation before handoff
- query the public token registry used by VeTrade
What this surface will not do
- sign transactions
- custody keys
- submit transactions on behalf of a user
Core endpoints
- HTTP API:
POST https://vetrade.vet/v2/swap-plans - MCP metadata:
https://vetrade.vet/mcp/server.json - Remote MCP server:
https://mcp.vetrade.vet/mcp - OpenAPI JSON:
https://vetrade.vet/openapi/swap-plans-v2.json
Plain HTTP example
curl -X POST https://vetrade.vet/v2/swap-plans \
-H 'Content-Type: application/json' \
-d @wallet-bound-request.json
OpenAI remote MCP example
{
"server_label": "VeTrade Swap Planner",
"server_url": "https://mcp.vetrade.vet/mcp"
}
ChatGPT developer-mode setup
Remote MCP URL: https://mcp.vetrade.vet/mcp
No auth header is required.
Anthropic / Claude remote MCP setup
Transport: Streamable HTTP
URL: https://mcp.vetrade.vet/mcp
No auth header is required.
Codex skill entrypoint
Use the VeTrade Swap Planner skill to choose between quote_swap, prepare_swap_bundle, and validate_swap_bundle.
Codex MCP config
[mcp_servers.vetrade_swap_planner]
url = "https://mcp.vetrade.vet/mcp"
Access note
- Authentication is not required during the current public beta.
- VeTrade may add optional API keys later for higher-rate or partner use cases.