Fleksa Integrations
Analytics & Reports - Overview
MCP tools for business analytics and reporting
Analytics & Reports
MCP tools for business analytics and reporting via AI assistants.
Overview
The Analytics & Reports tools enable AI agents to query business metrics, generate reports, and provide insights to restaurant owners.
Key Features
Sales Analytics
- Revenue summaries
- Order counts
- Average order value
- Sales by time period
Product Analytics
- Best sellers
- Category performance
- Item popularity
- Modifier usage
Report Generation
- Daily/weekly/monthly reports
- CSV export
- Custom date ranges
- Multi-format output
Trend Analysis
- Period comparisons
- Growth metrics
- Seasonal patterns
- Performance indicators
MCP Tools
fleksa_analytics
{
name: "fleksa_analytics",
description: "Get business analytics",
inputSchema: {
type: "object",
properties: {
shop_id: { type: "string" },
metric: { type: "string", enum: ["sales", "orders", "items", "customers"] },
period: { type: "string", enum: ["today", "week", "month", "year"] }
},
required: ["shop_id", "metric"]
}
}fleksa_get_sales_summary
{
name: "fleksa_get_sales_summary",
description: "Get sales summary report",
inputSchema: {
type: "object",
properties: {
shop_id: { type: "string" },
start_date: { type: "string" },
end_date: { type: "string" }
},
required: ["shop_id"]
}
}fleksa_get_shop_report_csv
{
name: "fleksa_get_shop_report_csv",
description: "Generate CSV report",
inputSchema: {
type: "object",
properties: {
shop_id: { type: "string" },
report_type: { type: "string" },
date_range: { type: "string" }
},
required: ["shop_id", "report_type"]
}
}