
Csv Analytics Mcp
- Updated July 26, 2026
- CSOAI-ORG/csv-analytics-mcp
csv-analytics-mcp is a MCP server that exposes CSV analytics tools to coding agents over stdio.
About
csv-analytics-mcp is a stdio Model Context Protocol server from MEOK AI Labs that connects AI coding agents to CSV-focused analytics capabilities. operators routinely export customer lists, event logs, or campaign results as CSV and then lose time re-explaining columns to a generic chat or rewriting pandas snippets in isolation. Registering this MCP server lets the same agent that edits your app also reason over those files through dedicated tools rather than ad-hoc file reads alone. Registry metadata lists version 1.0.4 distributed via PyPI under identifier csv-analytics-mcp, with transport type stdio and source on GitHub. It is best understood as a analytics integration for tabular exports, useful when you are validating channel performance, cohort behavior, or operational spreadsheets without standing up a full warehouse. Pair it with sensible data-handling practices because CSVs often contain PII you should redact before agent access.
- csv-analytics-mcp PyPI package v1.0.4 with stdio MCP transport
- MEOK AI Labs server aimed at agent-driven CSV analytics workflows
- GitHub source at CSOAI-ORG/csv-analytics-mcp for install and config
- Fits Claude Code and Cursor workflows on local or exported datasets
- Complements build-phase ETL by focusing on interpretation of CSV files
Csv Analytics Mcp by the numbers
- Data as of Jul 27, 2026 (Skillselion catalog sync)
claude mcp add csv-analytics-mcp -- uvx csv-analytics-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Package | csv-analytics-mcp |
|---|---|
| Transport | STDIO |
| Auth | None |
| Last updated | July 26, 2026 |
| Repository | CSOAI-ORG/csv-analytics-mcp ↗ |
What it does
Analyze exported CSV metrics inside your agent thread instead of bouncing between spreadsheets and the terminal.
Who is it for?
Best when you're reviewing signup, revenue, or campaign CSVs inside Claude Code or Cursor.
Skip if: Skip if you need petabyte warehouses, real-time streaming analytics, or strict governed BI with row-level ACLs only in a separate product.
What you get
Once configured, your agent can invoke CSV analytics MCP tools on exported datasets during growth and reporting tasks.
- Configured csv-analytics-mcp stdio entry in agent settings
- Repeatable agent calls against CSV analytics MCP tools
- Version 1.0.4 package alignment per registry metadata
By the numbers
- Package version 1.0.4 identifier csv-analytics-mcp on PyPI
- MCP transport stdio
- Repository github.com/CSOAI-ORG/csv-analytics-mcp
README.md
Csv Analytics MCP
Spreadsheet and CSV analysis toolkit: load files, filter/query data, compute statistics, create a...
Spreadsheet and CSV analysis toolkit: load files, filter/query data, compute statistics, create aggregations, pivot tables, and export chart-ready data. By MEOK AI Labs.
🚀 Quick Start
# Install via pip
pip install csv_analytics_mcp
# Or install via Smithery
npx -y @smithery/cli@latest install csv-analytics-mcp --client claude
✨ Features
- MCP protocol compliant
- Easy installation
- Well-documented API
- Production-ready
- Active maintenance
📖 Documentation
🛡️ Compliance
This MCP server is built with EU AI Act compliance built-in:
- ✅ Article 9 — Risk Management System
- ✅ Article 13 — Transparency & Instructions for Use
- ✅ Article 15 — Bias Detection & Testing
- ✅ Article 26 — FRIA Support (where applicable)
- ✅ Article 50 — AI Content Watermarking (where applicable)
Need help getting compliant? Book a free 15-min diagnostic →
🏢 Enterprise
Need custom development, SLA guarantees, or white-label deployment?
- Pro: $99/mo — Full MCP suite + EU AI Act tracking
- Enterprise: $499/mo — Custom dev + SLA + Dedicated support
View Pricing → | Contact Sales →
🤝 Part of the MEOK Ecosystem
This server is part of the MEOK AI Labs ecosystem — 300+ MCP servers for sovereign AI governance.
| Domain | Purpose |
|---|---|
| councilof.ai | EU AI Act compliance marketplace |
| safetyof.ai | AI safety & monitoring |
| meok.ai | Sovereign AI platform |
| cobolbridge.ai | Legacy modernization |
📜 License
MIT © CSOAI-ORG
Built with 💜 by MEOK AI Labs · UK Companies House 16939677
MIT © [MEOK AI Labs](https://meok.ai)Pairs with MEOK Governance Suite
Build something that touches users? You need compliance. MEOK ships 38 governance MCPs that drop in alongside this tool — EU AI Act, DORA, NIS2, CRA, GDPR, ISO 42001, FDA SaMD, MDR, Basel, MiFID II, MiCA, COPPA, and more.
# One-shot install of the governance pack
npx meok-setup --pack governance
Free tier: 10 calls/day per MCP. Pro tier (£79/mo): unlimited + cryptographically signed compliance attestations your auditor verifies independently.
→ Full catalogue: councilof.ai/catalogue → MEOK AI Labs: meok.ai
💸 Try MEOK in 30 seconds — instant buy ladder
| Tier | Price | What you get | Stripe |
|---|---|---|---|
| Smoke test | £1 | Signed sample MCP-Hardening report + Article 50 PDF | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
| Quick Kit | £9 | EU AI Act Article 50 implementation guide (C2PA + EU-Icon) | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
| Founder Call | £29 | 30-min 1-on-1 with the founder | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
Refundable. UK Stripe — VAT-clean. Builds on the 81-MCP MEOK fleet. Verify any signed report at https://meok.ai/verify.
Configuration
Add to your claude_desktop_config.json (Claude Desktop) or your MCP client config:
{
"mcpServers": {
"csv-analytics-mcp": {
"command": "uvx",
"args": ["csv-analytics-mcp"]
}
}
}
Or: pip install csv-analytics-mcp then run the csv-analytics-mcp command (stdio transport).
Examples
Once configured, ask your assistant, for example:
- "Use
load_csvto …" - "Use
query_datato …" - "Use
describe_columnsto …"
See also
MEOK compliance MCP fleet:
csv-tools-ai-mcp
Recommended MCP Servers
How it compares
MCP tabular analytics bridge, not a hosted warehouse or spreadsheet replacement.
FAQ
Who is csv-analytics-mcp for?
Developers who export CSV metrics and want their coding agent to analyze them through MCP tools.
When should I use csv-analytics-mcp?
Use it in Grow when you are interpreting exports from payments, ads, or product analytics to decide what to ship or market next.
How do I add csv-analytics-mcp to my agent?
Install the PyPI csv-analytics-mcp package, add a stdio MCP server block in your client config, and restart the agent session.