Quick Start
Add Andi MCP to your AI agent in seconds.
Cursor IDE Configuration
{
"mcpServers": {
"andi": {
"url": "https://mcp.andiron.ai/mcp/sse",
"transport": "sse"
}
}
}
After adding the configuration, restart Cursor and the Andi tools will be available in your AI assistant. Use @andi to invoke tools directly.
JSON-RPC Direct Integration
# List available tools
response = requests.post("https://mcp.andiron.ai/mcp/tools/list", json={
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list",
"params": {}
})
# Execute a tool
response = requests.post("https://mcp.andiron.ai/mcp/tools/call", json={
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "sales_traffic_api",
"arguments": {
"database_name": "your-org-id",
"start_date": "2025-01-01",
"end_date": "2025-01-31"
}
}
})
Available APIs
Intelligent routing across 20+ specialized APIs for Amazon sellers.
Sales & Traffic
Amazon sales data, traffic metrics, conversion rates, and revenue analytics.
Advertising
Campaign performance, ACOS, ROAS, and advertising spend optimization.
Keywords
Search rank tracking, keyword performance, and SEO analytics.
Inventory
Stock levels, FBA inventory health, and replenishment alerts.
Voice of Customer
Review analysis, sentiment tracking, and customer feedback insights.
Scheduled Tasks
Recurring reports, reminders, and automated MCP tool execution.
Listing Analyzer
Product listing optimization, content scoring, and SEO recommendations.
Competitive Analysis
Competitor tracking, market positioning, and share of voice metrics.
API Endpoints
Core MCP protocol endpoints for integration.
| Method | Endpoint | Description |
|---|---|---|
| POST | /mcp/initialize | MCP protocol handshake |
| POST | /mcp/tools/list | List all available tools |
| POST | /mcp/tools/call | Execute a specific tool |
| POST | /mcp/query | AI-powered natural language query |
| GET | /mcp/sse | SSE transport for MCP clients |
| GET | /mcp/stats | Server usage statistics |