Sponsored by Deepsite.site

Mcp Analytics

Created By
MCP Analyticsa month ago
MCP server for data analytics — upload CSV files or connect Shopify, Stripe, GA4, and Search Console. 50+ statistical and ML tools including regression, clustering, time series, hypothesis testing, and customer analytics. Semantic tool discovery matches your question to the right analysis automatically.
Content

MCP Analytics Suite

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 →

Version Platform License Docs Auth

Every analysis starts with a question. We handle the rest.

🚀 Quick Start🔄 How It Works🛠️ MCP Tools🛡️ Security📖 Documentation


The Formula

Question + Dataset = Analytics

Transform business questions into actionable insights through intelligent discovery

Overview

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.

Why MCP Analytics?

  • Intelligent Discovery: Automatically finds the right analytical approach
  • Complete Workflow: From question to insight in one seamless flow
  • Zero Setup: Cloud-based processing, works instantly
  • Enterprise Security: OAuth2, encryption, isolated processing
  • Comprehensive Suite: Full range of analytical capabilities
  • Interactive Reports: Shareable visualizations with AI insights

Quick Start

Installation

For Claude Desktop

Add to your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "mcp-analytics": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://api.mcpanalytics.ai/auth0"]
    }
  }
}
For Cursor

Add to .cursor/config.json in your project root:

{
  "mcpServers": {
    "mcp-analytics": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://api.mcpanalytics.ai/auth0"]
    }
  }
}
For VS Code (Continue Extension)

Add to your Continue config at ~/.continue/config.json:

{
  "models": [{
    "provider": "anthropic",
    "model": "claude-3-5-sonnet",
    "mcpServers": {
      "mcp-analytics": {
        "command": "npx",
        "args": ["-y", "mcp-remote@latest", "https://api.mcpanalytics.ai/auth0"]
      }
    }
  }]
}
For Claude Code

Add to claude_code_config.json:

{
  "mcpServers": {
    "mcp-analytics": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://api.mcpanalytics.ai/auth0"]
    }
  }
}

How It Works

The MCP Analytics Workflow

  1. Ask Your Question - Describe what you want to analyze in natural language
  2. Intelligent Discovery - tools.discover finds the right analytical approach
  3. Data Upload - datasets.upload securely processes your data
  4. Automated Analysis - tools.run executes with optimal configuration
  5. Interactive Results - reports.view delivers shareable insights
User: "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

MCP Tools

The platform provides a complete suite of MCP tools for end-to-end analytics:

Core Analytics Tools

  • discover_tools - Natural language tool discovery (5-signal semantic search)
  • tools_run - Execute an analysis module on your data
  • tools_info - Get tool documentation and schema
  • tools_schema - Inspect column requirements for a tool

Data Management

  • datasets_upload - Secure data upload with encryption
  • datasets_list - List your uploaded datasets
  • datasets_read - Preview dataset contents
  • datasets_download - Download a dataset
  • datasets_update - Update dataset metadata

Connectors

  • connectors_list - List available data source connections
  • connectors_query - Pull live data from a connected source

Reporting & Insights

  • reports_view - Open an interactive HTML report
  • reports_list - List your reports
  • reports_search - Semantic search across past analyses
  • agent_advisor - Conversational AI that guides analysis and interprets results

Platform Tools

  • billing - Usage and subscription management
  • about - Platform information and status

Features

Natural Language Interface

Just 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?"

Comprehensive Analysis Suite

Statistical Methods

  • Regression Analysis
  • Advanced Modeling
  • Hypothesis Testing
  • Survival Analysis
  • Bayesian Methods

Machine Learning

  • Ensemble Methods
  • Boosting Algorithms
  • Neural Networks
  • Clustering
  • Dimensionality Reduction

Time Series

  • Forecasting
  • Seasonal Analysis
  • Trend Detection
  • Multivariate Models
  • Causal Analysis

Business Analytics

  • Customer Analytics
  • Market Analysis
  • Pricing Models
  • Predictive Analytics
  • Experimental Design

Seamless Workflow

graph LR
    A[Ask in Claude/Cursor] --> B[MCP Analytics]
    B --> C[Secure Processing]
    C --> D[Interactive Report]
    D --> E[Share Results]

Example Usage

Basic Regression

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]

Customer Segmentation

User: "Segment my customers in sales_data.csv into meaningful groups"
Claude: [Performs k-means clustering, creates segment profiles with visualizations]

Time Series Forecasting

User: "Forecast next quarter's revenue using our historical data"
Claude: [Applies ARIMA, generates predictions with confidence intervals]

Security & Compliance

Enterprise Security Features

  • Authentication: OAuth2 via Auth0 with PKCE
  • Encryption: TLS 1.3 for all data transfers
  • Processing: Isolated Docker containers per analysis
  • Data Handling: Ephemeral processing, no persistence
  • Access Control: OAuth 2.0 scoped permissions with usage limits
  • Audit Trail: Complete logging for compliance

Privacy & Data Handling

  • Data Privacy: Ephemeral processing, no data retention
  • User Rights: Data deletion upon request
  • Secure Processing: Isolated containers per analysis
  • Enterprise Options: Contact us for compliance requirements

Read full security documentation →

Architecture

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

Performance

  • Dataset Size: Handles large datasets
  • Processing Time: Fast cloud-based processing
  • Secure Infrastructure: Isolated Docker containers
  • API Access: RESTful API with authentication

Getting Started

Visit our website for pricing and signup →

Documentation

Support

Comparison with Other MCP Servers

FeatureMCP AnalyticsGoogle Analytics MCPPostgreSQL MCPFilesystem MCP
Use CaseStatistical AnalysisWeb MetricsDatabase QueriesFile Access
Setup Time30 secondsOAuth + ConfigConnection stringPath config
Data SourcesAny CSV/JSON/URLGA4 OnlyPostgreSQL OnlyLocal files
Analysis ToolsFull SuiteGA4 MetricsSQL OnlyRead/Write
Machine Learning✅ Full Suite
Visualizations✅ Interactive✅ Dashboards
Shareable Reports

Detailed comparison →

About MCP Analytics

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.

Testing & Support

Testing Your Connection

After installation, restart your IDE and look for "MCP Analytics" in the available tools. On first use, you'll be prompted to authenticate via OAuth 2.0.

# To test the connection directly:
npx -y mcp-remote@latest https://api.mcpanalytics.ai/auth0

Troubleshooting

If MCP Analytics doesn't appear after installation:

  1. Ensure your config file is valid JSON
  2. Restart your IDE completely
  3. Check the IDE's developer console for errors
  4. Verify you have internet connectivity

For support: support@mcpanalytics.ai

Contributing

While the core server is proprietary, we welcome contributions to:

  • Documentation improvements
  • Example notebooks and use cases
  • Bug reports and feature requests
  • Community tools and integrations

See CONTRIBUTING.md for guidelines.

License

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

Server Config

{
  "mcpServers": {
    "mcp-analytics": {
      "command": "npx",
      "args": [
        "@anthropic/mcp-analytics"
      ]
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Amap Maps高德地图官方 MCP Server
CursorThe AI Code Editor
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
DeepChatYour AI Partner on Desktop
ChatWiseThe second fastest AI chatbot™
Serper MCP ServerA Serper MCP Server
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
WindsurfThe new purpose-built IDE to harness magic
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Playwright McpPlaywright MCP server
Tavily Mcp
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.