Server data from the Official MCP Registry
Analytics for business data: upload CSV or connect GA4/GSC, run ML/stats, get HTML reports.
Analytics for business data: upload CSV or connect GA4/GSC, run ML/stats, get HTML reports.
Remote endpoints: streamable-http: https://api.mcpanalytics.ai/auth0
The MCP Analytics server has proper API key authentication and appropriate permissions for its data analytics purpose. However, several security concerns lower the score including lack of input validation, potential data exfiltration through external API calls, and missing error handling around network operations. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity).
3 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Available as Local & Remote
This plugin can run on your machine or connect to a hosted endpoint. during install.
From the project's GitHub README.
⚠️ Beta — v2 rebuild in progress. We're actively rebuilding the platform. Some features are incomplete or unstable right now. You can sign up and test at mcpanalytics.ai, or subscribe to the launch newsletter. Details: #22 — v2 rebuild: what's changing, what to expect.
MCP server for data analytics — Shopify, Stripe, WooCommerce, eBay, CSV files, and more. Run statistical analysis, forecasting, and machine learning directly in Claude or Cursor. Ask a question, upload your data, get an interactive report.
This is the public listing and documentation repository. Issues, feature requests, and examples live here. The API server code is maintained separately.
Sample Reports → • Try Demo → • Pricing →
Every analysis starts with a question. We handle the rest.
🚀 Quick Start • 🔄 How It Works • 🛠️ MCP Tools • 🛡️ Security • 📖 Documentation
Click to watch: Ask a question → upload data → get an interactive report with AI insights
MCP Analytics Suite is an intelligent analytics platform that understands what you want to analyze and automatically selects the right approach. No statistics degree required — just describe your business question and let our AI-powered discovery handle the complexity.
Upload any CSV — Shopify orders, Stripe exports, WooCommerce reports, eBay data, ad platform reports, or any tabular data. Connect live data from Google Analytics 4 and Google Search Console via native connectors. Run regression, forecasting, clustering, A/B testing, customer LTV, churn prediction, and hundreds of other statistical methods. Get back interactive HTML reports with charts and AI-written insights.
Sign up free at app.mcpanalytics.ai, go to account settings, and copy your API key (starts with mcp_). You get 2,000 free credits — no credit card required.
Three options — all connect to the same platform with the same tools.
Works with Claude Desktop, Cursor, Windsurf, and any stdio MCP client. Requires Node.js 18+.
Claude Desktop — add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"mcpanalytics": {
"command": "npx",
"args": ["-y", "@mcp-analytics/mcp-analytics"],
"env": {
"MCP_ANALYTICS_API_KEY": "mcp_your_key_here"
}
}
}
}
Cursor / Windsurf — add to .cursor/mcp.json:
{
"mcpServers": {
"mcpanalytics": {
"command": "npx",
"args": ["-y", "@mcp-analytics/mcp-analytics"],
"env": {
"MCP_ANALYTICS_API_KEY": "mcp_your_key_here"
}
}
}
}
Claude Code — run in your terminal:
claude mcp add mcpanalytics -- npx -y @mcp-analytics/mcp-analytics
# Then set MCP_ANALYTICS_API_KEY in your environment
For MCP clients that support Streamable HTTP transport with custom headers:
{
"mcpServers": {
"mcpanalytics": {
"url": "https://api.mcpanalytics.ai/mcp/api-key",
"headers": {
"X-API-Key": "mcp_your_key_here"
}
}
}
}
Zero-config — a browser opens for login on first connection:
{
"mcpServers": {
"mcpanalytics": {
"url": "https://api.mcpanalytics.ai/auth0"
}
}
}
Explore the full tool catalog before signing up:
# Static metadata (tool names, descriptions, all transport options)
curl https://api.mcpanalytics.ai/.well-known/mcp.json
# MCP protocol discovery (no auth — works with any MCP client)
curl -X POST https://api.mcpanalytics.ai/mcp/discover \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1,"params":{}}'
Restart your MCP client. Ask:
tools.discover finds the right analytical approachdatasets.upload securely processes your datatools.run executes with optimal configurationreports.view delivers shareable insightsUser: "What drives our sales growth?"
MCP Analytics:
→ Discovers regression and correlation methods
→ Configures analysis for your data structure
→ Runs multiple analytical approaches
→ Returns comprehensive report with insights
The platform provides a complete suite of MCP tools for end-to-end analytics:
discover_tools - Natural language tool discovery (5-signal semantic search)tools_run - Execute an analysis module on your datatools_info - Get tool documentation and schematools_schema - Inspect column requirements for a tooldatasets_upload - Secure data upload with encryptiondatasets_list - List your uploaded datasetsdatasets_read - Preview dataset contentsdatasets_download - Download a datasetdatasets_update - Update dataset metadataconnectors_list - List available data source connectionsconnectors_query - Pull live data from a connected sourcereports_view - Open an interactive HTML reportreports_list - List your reportsreports_search - Semantic search across past analysesagent_advisor - Conversational AI that guides analysis and interprets resultsbilling - Usage and subscription managementabout - Platform information and statusJust describe what you need:
"What drives our revenue growth?"
"Find customer segments in our data"
"Forecast next quarter's sales"
"Did our marketing campaign work?"
Statistical Methods
Machine Learning
Time Series
Business Analytics
graph LR
A[Ask in Claude/Cursor] --> B[MCP Analytics]
B --> C[Secure Processing]
C --> D[Interactive Report]
D --> E[Share Results]
User: "I have a CSV with house prices. Can you predict price based on size and location?"
Claude: [Runs linear regression, provides R², coefficients, and diagnostic plots]
User: "Segment my customers in sales_data.csv into meaningful groups"
Claude: [Performs k-means clustering, creates segment profiles with visualizations]
User: "Forecast next quarter's revenue using our historical data"
Claude: [Applies ARIMA, generates predictions with confidence intervals]
Read full security documentation →
flowchart TB
subgraph "Client Integration"
CLI[CLI/SDK]
Claude[Claude Desktop]
Cursor[Cursor IDE]
MCP[MCP Protocol]
end
subgraph "API Gateway"
LB[Load Balancer]
Auth[OAuth 2.0/Auth0]
Rate[Rate Limiting]
end
subgraph "Processing Layer"
Router[Request Router]
Queue[Job Queue]
Workers[Processing Workers]
Docker[Docker Containers]
end
subgraph "Analytics Engine"
Stats[Statistical Methods]
ML[Machine Learning]
TS[Time Series]
Report[Report Generation]
end
subgraph "Data Layer"
Cache[Results Cache]
Storage[Secure Storage]
Encrypt[Encryption Layer]
end
CLI --> LB
Claude --> LB
Cursor --> LB
MCP --> LB
LB --> Auth
Auth --> Rate
Rate --> Router
Router --> Queue
Queue --> Workers
Workers --> Docker
Docker --> Stats
Docker --> ML
Docker --> TS
Stats --> Report
ML --> Report
TS --> Report
Report --> Cache
Cache --> Storage
Storage --> Encrypt
style Auth fill:#e8f5e9
style Docker fill:#fff3e0
style Report fill:#e3f2fd
Visit our website for pricing and signup →
| Feature | MCP Analytics | Google Analytics MCP | PostgreSQL MCP | Filesystem MCP |
|---|---|---|---|---|
| Use Case | Statistical Analysis | Web Metrics | Database Queries | File Access |
| Setup Time | 30 seconds | OAuth + Config | Connection string | Path config |
| Data Sources | Any CSV/JSON/URL | GA4 Only | PostgreSQL Only | Local files |
| Analysis Tools | Full Suite | GA4 Metrics | SQL Only | Read/Write |
| Machine Learning | ✅ Full Suite | ❌ | ❌ | ❌ |
| Visualizations | ✅ Interactive | ✅ Dashboards | ❌ | ❌ |
| Shareable Reports | ✅ | ❌ | ❌ | ❌ |
MCP Analytics is built by data scientists and engineers passionate about making advanced statistical analysis accessible through AI assistants. The platform runs validated, deterministic analysis modules — the same data and tool produce the same result every time, unlike LLM code generation.
After installation, restart your MCP client and look for "MCP Analytics" in the available tools. You should see tools like discover_tools, tools_run, datasets_upload, etc.
# Test the stdio proxy directly:
MCP_ANALYTICS_API_KEY=mcp_your_key npx -y @mcp-analytics/mcp-analytics
# Should output: "[mcp-analytics] Connected to https://api.mcpanalytics.ai. 19 tools available."
If MCP Analytics doesn't appear after installation:
mcp_For support: support@mcpanalytics.ai
While the core server is proprietary, we welcome contributions to:
See CONTRIBUTING.md for guidelines.
Copyright © 2025 PeopleDrivenAI LLC. All Rights Reserved.
MCP Analytics is a product of PeopleDrivenAI LLC.
This is commercial software. Use of the MCP Analytics service is subject to our:
Ready to transform your data analysis workflow?
Get Started Free | Read Docs | View Demo
Built by MCP Analytics | Powered by R & Python
If MCP Analytics saves you time, a ⭐ on GitHub helps others find it.
Tags: mcp mcp-server model-context-protocol analytics data-analytics shopify-analytics stripe-analytics csv-analysis statistics machine-learning time-series clustering regression business-intelligence claude cursor ai-tools no-code-analytics forecasting customer-analytics
Be the first to review this server!
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace · Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm — conversationally
by mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.
by Taylorwilsdon · Productivity
Control Gmail, Calendar, Docs, Sheets, Drive, and more from your AI