The AI Data Platform for your whole team
Analyze data with AI, create visualizations, and deploy applications โ all from a single platform.
Conversational Data Analysis
Threads & Custom Assistants
AI-Powered Jupyter Notebooks
Code, No-Code & AI Assistant
Interactive Data Apps
Dashboards & Data Apps
Cloud Dev Environments
VS Code, Any Framework, Full Control
Automated Pipelines
Scheduled Jobs & API Triggers
{ "tool": "salesforce-mcp", "action": "create_task", "summary": "Create follow-up tasks for the top APAC accounts" }
via salesforce-mcp ยท just now
Quarterly breakdown by region with growth projections.
df = mineo.query("SELECT region, SUM(revenue) FROM sales GROUP BY region")
px.bar(df, x="region", y="revenue", title="Q4 Revenue")
Key insight: North America drives 43% of total revenue. APAC showed the strongest growth at +23% QoQ, driven by expansion in Japan and Australia.
df.sort_values("revenue", ascending=False).head()
| Region | Revenue | Growth |
|---|---|---|
| North America | $1.8M | +12% |
| Europe | $1.1M | +8% |
| APAC | $820K | +23% |
| LATAM | $480K | -3% |
Last updated: 2 minutes ago
Total Revenue
$3.9M
+18% vs Q3
Customers
1,692
+12% vs Q3
Avg Deal Size
$2.1K
-3% vs Q3
| Customer | Region | Revenue | Status |
|---|---|---|---|
| Acme Corp | NA | $245K | Active |
| TechFlow GmbH | EU | $182K | Active |
| Sakura Ltd | APAC | $156K | Pending |
| DataBr SA | LATAM | $98K | Active |
Explorer
import streamlit as st
from mineo import DataSource
import plotly.express as px
st.set_page_config(layout="wide")
st.title("Sales Dashboard")
ds = DataSource("sales_db")
df = ds.query("SELECT * FROM orders")
# Layout
col1, col2 = st.columns(2)
col1.metric("Revenue", f"${df.total.sum():,.0f}")
col2.metric("Customers", f"${df.customer_id.nunique():,}")
# Charts
fig = px.bar(df, x="month", y="total", color="region")
st.plotly_chart(fig, use_container_width=True)
st.dataframe(df.head(10), use_container_width=True)
mineo-dev@workspace:~/project$
Successfully installed plotly-5.22 scikit-learn-1.5
Your app is live at https://sales-dashboard.mineo.app
✓ Deployed successfully
Elements
Resource Config
Scheduling
API