Aura AI Trading Assistant MCP
Advanced MCP server integrating AURA API with ChatGPT, automated trading, and x402 micropayments.
This API provides endpoints for portfolio analytics, trading strategies, AI chat assistance, trade execution, and privacy policy access.
GET /api/asset - Portfolio Analytics
Get detailed portfolio analytics with AI insights.
Parameters
address
(query, required): Wallet address to analyze (string)
Example Request
GET /api/asset?address=0x1234567890abcdef
GET /api/strategies - Trading Strategies
Get AI-powered trading strategies and recommendations.
Parameters
address
(query, required): Wallet address to analyze (string)
Example Request
GET /api/strategies?address=0x1234567890abcdef
POST /api/chat - Chat Assistant
Interactive AI assistant for portfolio analysis and strategy advice.
Request Body
address
(optional): Wallet address (string)message
(optional): User message (string)
Example Request
POST /api/chat Content-Type: application/json{
"address": "0x1234567890abcdef",
"message": "What is my portfolio value?"
}
POST /api/trade - Execute Trade
Execute trades with automation rules and smart order routing.
Request Body
address
(required): Wallet address (string)fromToken
(required): Token to sell (string)toToken
(required): Token to buy (string)amount
(required): Amount to trade (string)slippage
(optional): Allowed slippage percentage (number)automationRules
(optional): Automated trading rules (array of objects)
Example Request
POST /api/trade Content-Type: application/json{
"address": "0x1234567890abcdef",
"fromToken": "ETH",
"toToken": "USDC",
"amount": "1.0"
}
GET /api/privacy-policy - Privacy Policy
Get the privacy policy details.
Response
{
"success": true,
"data": {
"version": "1.0",
"lastUpdated": "2023-10-01",
"policyDetails": {}
}
}