Skip to main content
Glama

meelu-analytics-mcp

Ask your AI assistant real questions about your data — and get answers you can actually rely on.

You have a spreadsheet. You want to know what's in it, what's driving a number, who your best customers are, where things are heading. So you ask Claude.

Today it will write a little program on the spot and give you an answer. Usually that's fine. When it isn't, you can't tell: it might have used the wrong kind of test for your data, or graded its own prediction on the same rows it learned from, or told you one thing causes another when it only happens alongside it. The answer looks equally confident either way.

This tool sits between your assistant and your data and takes those judgement calls out of its hands. You ask the question in plain English; a proper analysis engine works out the right method from your actual data, runs it, and tells you how much to trust the result — or says the data can't answer the question, rather than making something up.

What it looks like

You asked a question. You didn't have to know that comparing four groups against a revenue figure calls for a particular statistical test, or that this data broke the assumptions of the obvious one and needed a different test instead. That was worked out from the data, and written down in the answer — so if someone asks six months from now how you got that number, it's on the record.

Related MCP server: MCP CSV Analysis with Gemini AI

What you can ask

There are 45 tools under the hood, but you never call them. You ask; your assistant picks. In practice that means questions like:

You ask

What you get back

"What's in this file?"

Every column explained — what kind of data it holds, what's missing, what's typical, and which "numbers" are really just ID codes

"Are these two things related?"

A real statistical test, chosen to suit your data — and how big the relationship is, not just whether it's detectable

"What's driving revenue?"

The factors that matter most, ranked, plus plain rules you can act on: "highest among premium customers who've been with us over 18 months"

"Do my customers fall into groups?"

Natural segments found in the data, each described so you can tell what makes it distinct

"What predicts churn?"

A prediction model, scored honestly on data it was never shown, plus what it's really paying attention to

"Where is this heading?"

The underlying trend separated from seasonal ups and downs, a forecast with honest margins of error, and the dates when behaviour shifted

"Did the price change cause this?"

A genuine attempt at cause and effect — put through a sanity check, and withheld entirely if it fails

"Who are my best customers?"

Customer segments by how recently and often they buy, how well you retain them over time, and what tends to get bought together

Related files can be analysed together, and anything the built-in tools don't cover, you can ask for directly — it becomes part of the same analysis.

Getting set up

This is a one-time setup. You'll need to use Terminal (on Mac: press ⌘ Space, type "Terminal", hit enter) and copy-paste a few commands. After that you never touch it again — you just talk to your assistant.

Before you start, you need two things installed: Python version 3.10 or newer, and a tool called uv that handles everything else automatically.

Step 1 — Download and start it

Copy this whole block into Terminal and press enter:

git clone https://github.com/shubham303/meelu-analytics-mcp.git
cd meelu-analytics-mcp

mkdir -p "$HOME/meelu-data"
export TABULAR_BASE="$HOME/meelu-data"

uv run --project . meelu-analytics-mcp

The first run takes a minute while it downloads what it needs. When you see:

meelu-analytics-mcp listening on http://127.0.0.1:8321/mcp

it's working. Leave this window open — closing it switches the tool off. Open a new Terminal window (⌘ N) for the next step.

That meelu-data folder it just made in your home directory is where your data goes. More on that in step 3.

Step 2 — Connect your assistant

Claude Code — paste this into the new Terminal window:

claude mcp add --transport http meelu-analytics http://127.0.0.1:8321/mcp

To check it worked, start Claude with claude, then type /mcp. You should see meelu-analytics listed as connected.

These apps have a settings file where you list tools like this one. Add this entry to it:

{
  "mcpServers": {
    "meelu-analytics": {
      "type": "http",
      "url": "http://127.0.0.1:8321/mcp"
    }
  }
}

Some apps prefer to start the tool themselves, in which case you can skip step 1 entirely and use this instead — replacing both paths with real ones:

{
  "mcpServers": {
    "meelu-analytics": {
      "command": "uv",
      "args": ["run", "--project", "/absolute/path/to/meelu-analytics-mcp",
               "meelu-analytics-mcp", "--stdio"],
      "env": { "TABULAR_BASE": "/absolute/path/to/your/data" }
    }
  }
}

Step 3 — Put your spreadsheet in the data folder

Don't skip this one. For safety, the tool can only see inside that one meelu-data folder — not your Downloads, not your Desktop, nowhere else on your computer. If your file isn't in there, it simply won't be found.

So drag your CSV file into the meelu-data folder in your home folder (in Finder: ⌘ ⇧ H, then open meelu-data). Or from Terminal:

cp ~/Downloads/orders.csv ~/meelu-data/

Put in as many files as you like. If several of them are related — orders and customers, say — the tool will spot how they connect on its own.

Working with Excel? Save as CSV first: File → Save As → CSV.

Step 4 — Just ask

That's it. Talk to your assistant normally:

Using meelu, load orders.csv and tell me what's in it.

Using meelu, is there a real relationship between the discount we gave and whether the order came back? And which test did it use?

Using meelu, load orders.csv and customers.csv, put them together, and tell me what predicts whether a customer leaves.

Saying "using meelu" the first time steers your assistant to this tool instead of improvising its own answer. After that it'll carry on using it.

Three follow-ups worth having in your back pocket, because they're where this tool earns its keep:

  • "Which test did it use, and why?" — there's always an answer, and it's recorded.

  • "How much should I trust this?" — every result carries a rating. If the tool refused to answer, that's the answer — don't let your assistant fill the gap with a guess.

  • "Is that actually causing it, or just related?" — almost always the latter, and the difference matters enormously before you act on it.

Getting started walks through the same ground in more depth.

Why it's built this way

Three decisions do most of the work.

The method is chosen from your data, not guessed at. Comparing groups against a number is usually one particular test — unless your data doesn't meet that test's assumptions, in which case it needs a different one, and the difference changes the answer. That check runs every single time, and what it found is reported alongside the result.

It's willing to say no. Too few rows to be meaningful. A prediction that would be graded on the rows it learned from. A cause-and-effect claim that fails its own sanity check. In each case you get a plain explanation instead of a number. A refusal tells you something true; a confident wrong answer doesn't.

Your work builds up. Segments, predictions, and any new columns you create get saved back alongside your data, so each question builds on the last instead of starting from scratch. It all survives shutting down and coming back tomorrow.

Documentation

The technical details, for when you want them:

Guide

What's in it

Getting started

Install, run the server, connect an agent, first analysis

Configuration

Environment variables, storage layout, optional extras

Session model

Sessions, tables, the one-table rule, persistence

Honesty model

Trust levels, caveats, declines — and how to read them

Association test selection

The deterministic routing table, in detail

Architecture

Module layout and the dependency rules behind it

Tool reference

All 45 tools, by category

Tool reference by category

Built on DuckDB, scikit-learn, statsmodels, SHAP and DoWhy. Runs entirely on your own machine — your data never leaves it.

Roadmap

Everything below ships today.

Capability

Explore — summarise any file, flag unusual values, scan for relationships

Test — statistical tests chosen automatically from the data's shape

Segment — find natural groupings and describe what makes each distinct

Predict — train models, score them honestly, explain what drives them

Forecast — separate trend from seasonality, project forward, find turning points

Explain — rank what's driving a number; estimate cause and effect

Customers — retention cohorts, RFM segments, market basket analysis

Build — engineer new columns, clean messy tables, query with SQL

Coming next

  • Bigger files — sampling and out-of-memory strategies, so large data degrades gracefully rather than being refused.

  • One-command install — no cloning, no terminal setup.

  • More file types — Excel, Parquet and JSON alongside CSV.

  • Better trust ratings — real confidence assessments everywhere they're still missing.

  • Fewer manual steps — analysing related files without joining them by hand.

Deliberately not doing

Dashboards, reports, and connecting to your other systems. This is the analysis engine; what you do with the answer is up to you.

Contributing

Issues and pull requests are welcome. When adding an analytic, keep the two invariants: method selection must be deterministic and recorded in the result's metadata, and every result must carry an honest trust block — including a decline when the data cannot support the question. See Architecture for where things belong.

uv sync --extra dev --extra insights
uv run pytest

Credits and license

Ported from TableIntelligence by the same author. Licensed under the MIT License.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    C
    maintenance
    Comprehensive CSV processing MCP server with 40+ operations for data manipulation, analysis, and validation. Features auto-save, undo/redo, and handles GB+ files
    4
    39
    24
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    An MCP server for data analysis and visualization supporting CSV and Excel files. It enables users to generate statistical summaries and create multi-dimensional charts like heatmaps and bar plots through natural language.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for Seline Analytics API
    74
    2
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/shubham303/meelu-analytics-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server