In-depth architectural comparison of the Data Profiler MCP and Growthbook MCP MCP servers. Compare execution transports, security boundaries, tool capabilities, quality scores, and ready-to-paste client installation snippets for Claude, Cursor, Windsurf, and VS Code.
At a Glance & Executive Verdict
Data Profiler MCP
Data Science Tools · Local stdio
Quality: 59/100 (Good) | Auth: No auth required
Growthbook MCP
Data Science Tools · Local stdio
Quality: 67/100 (Great) | Auth: API Key required
Verdict Summary: Choose Data Profiler MCP if you need specialized Data Science Tools tools running via a local process. Choose Growthbook MCP if your workspace requires Data Science Tools integration with local subprocess execution. Both servers can be configured concurrently in your client's mcpServers manifest.
Which MCP Server Should You Choose?
Choose Data Profiler MCP when:
You need dedicated capabilities in the Data Science Tools domain.
You prefer local stdio subprocess transport architecture.
Your security boundary fits: No auth required (Free / Open Source).
Profiles tabular data files (CSV, TSV, Parquet, Excel, JSON) for LLM agents: one-call dataset overview, per-column statistics, a data-quality audit (missing values, duplicates, mixed types, outliers), and memory-saving dtype suggestions. Pure Python (pandas); files are read locally and nothing leaves your machine. pip install data-profiler-mcp.
Tools for creating and interacting with GrowthBook feature flags and experiments.
Category & Scope
Tools & Capabilities Breakdown
Data Profiler MCP Tools (7)
profile_dataset
Profile a tabular data file in one call: the fastest way to understand a dataset.
Reads the file at ``path`` (CSV, TSV, Parquet, Excel or JSON/JSONL, detected
from the extension) and returns a structured overview:
- file metadata (format, size),
- shape (row and column counts, and whether the profile was sampled),
- total memory footprint,
- a missing-value summary and a duplicate-row count,
- a per-column summary (dtype, inferred type, null %, unique %, sample
values, and basic stats for numeric/datetime columns), and
- a list of plain-language data-quality flags.
Use this first whenever a user points you at a data file and wants to know
what is in it. ``max_rows`` caps how many rows are read (default: up to one
million); the result flags when the file was larger and the stats are a
head sample. Pass 0 to remove the cap entirely.
preview_data
Peek at actual rows of a data file.
Returns ``n`` rows (capped at 100) as records. ``mode`` selects which rows:
``head`` (default), ``tail``, or ``sample`` (random). Use this to see real
example values rather than just statistics, for example to check formatting,
encodings, or how a specific column looks in practice.
column_stats
Deep statistical dive on a single column.
For numeric columns: min/max, mean, std, a full set of percentiles
(p1/p5/q1/median/q3/p95/p99), skewness, kurtosis, zero and negative counts,
an IQR-based outlier count with bounds, and a 10-bin histogram. For datetime
columns: the min and max timestamp. For text/categorical columns: the top
values with counts and percentages, plus string-length statistics.
Reach for this after ``profile_dataset`` when one column needs closer
inspection. Raises an error listing the available columns if ``column`` is
not found.
Ready-to-Paste Client Configurations
Paste either (or both) of these JSON server blocks into your client config file (e.g. claude_desktop_config.json or ~/.cursor/mcp.json).
Data Profiler MCP is categorized under Data Science Tools and uses a local stdio subprocess. In contrast, Growthbook MCP belongs to Data Science Tools using local stdio subprocess. Select Data Profiler MCP when you need capabilities focused on data science tools and Growthbook MCP when you require tools for data science tools.
Run a focused data-quality audit and return issues grouped by severity.
Detects duplicate rows, all-missing and high-missing columns, constant
columns, likely identifier columns, numbers stored as text, dates stored as
text, columns mixing numeric and text values, leading/trailing whitespace,
and empty (whitespace-only) strings. Each issue carries a column (or ``null`` for
table-level), an issue code, a severity (``high``/``warning``/``info``), and
a plain-language explanation.
Use this when the user cares specifically about cleanliness, is preparing
data for modeling, or asks "is anything wrong with this data?".
suggest_dtypes
Recommend more memory-efficient or more-correct column dtypes.
For each column, proposes a better dtype when one exists: text that is fully
numeric to a numeric type, low-cardinality text to ``category``, and
oversized integer/float columns downcast to smaller types. Reports per-column
and total estimated memory savings.
Use this to help a user shrink a DataFrame's memory footprint or fix columns
that were loaded with the wrong type.
compare_datasets
Diff two tabular files: what changed between version A and version B.
Reports the row-count delta, columns added or removed in B, dtype changes on
shared columns, and per-column null-rate (and, for numeric columns, mean)
for both files side by side.
Use this to compare two snapshots of the same dataset, validate a data
pipeline's output against a baseline, or check what a transformation changed.
correlation_matrix
Correlations between numeric columns, ranked by strength.
Computes pairwise correlations across all numeric columns (``pearson`` by
default; ``spearman`` or ``kendall`` for rank-based relationships) and
returns pairs ranked by absolute correlation, a ``high_correlation_pairs``
list (|r| >= 0.9, a multicollinearity signal when preparing features for
modeling), and the full matrix when there are 15 or fewer numeric columns.
Pass ``column`` to instead rank how strongly every other numeric column
correlates with that one, for example a target variable. Constant columns
are excluded and listed.
Use this when the user is selecting features for a model, hunting
redundant columns, or asking what moves together with a numeric outcome.
Growthbook MCP Tools (4)
growthbook_api_read
Make an authenticated GET request to the GrowthBook REST API. Use path (+ optional query string) exactly as shown in skill workflows that mention gb-call GET. Paths typically start with /api/v1/ or /api/v2/. Returns the raw response body on success. Queries the GrowthBook REST API — see https://docs.growthbook.io/api (OpenAPI: https://api.growthbook.io/api/v1/openapi.yaml).
growthbook_api_write
Make an authenticated mutating request (POST, PUT, PATCH, or DELETE) to the GrowthBook REST API. Use method + path (+ optional JSON body) exactly as shown in skill workflows that mention gb-call with those methods. Paths typically start with /api/v1/ or /api/v2/. Returns the raw response body on success. Mutates the GrowthBook REST API — see https://docs.growthbook.io/api (OpenAPI: https://api.growthbook.io/api/v1/openapi.yaml).
growthbook_list_skills
List available GrowthBook agent skills (name + description). Use growthbook_read_skill to load the full workflow for a skill before acting. Skills encode how to accomplish GrowthBook tasks well; use growthbook_api_read / growthbook_api_write to execute the REST calls they describe.
growthbook_read_skill
Return the full markdown content of a GrowthBook skill by name (from growthbook_list_skills). Follow the skill's workflow; when it shows `gb-call <METHOD> <PATH> [body]`, use growthbook_api_read for GET and growthbook_api_write for POST/PUT/PATCH/DELETE.