MCP Analytics Server
# MCP Analytics Server
[](https://www.python.org/)
[](https://modelcontextprotocol.io/)
[](https://duckdb.org/)
[](https://docs.pydantic.dev/)
[](https://docs.astral.sh/ruff/)
[](https://mypy-lang.org/)
[](https://github.com/Fission-AI/OpenSpec)
[](LICENSE)
> A production-grade **Model Context Protocol (MCP)** server built in Python that exposes typed, deterministic, and security-guarded analytical tools over a business dataset stored in **DuckDB**.
An external AI agent (e.g. GPT through the OpenAI Agents SDK, Claude Desktop, or Cursor) can dynamically discover and execute analytical queries without needing direct database access or running unconstrained SQL.
---
## โจ Key Highlights
- **Python-First MCP Server**: Fully compliant with the official Model Context Protocol standard over `stdio`.
- **Model-Agnostic Architecture**: The server contains **no LLM** inside. It exposes clean, deterministic tool contracts that any MCP-compatible agent can invoke.
- **Embedded Columnar Analytics**: Powered by **DuckDB** for fast, efficient columnar aggregations on normalized enterprise data.
- **AST-Based SQL Guard**: Uses `sqlglot` to parse and validate ad-hoc queries, strictly allowing read-only `SELECT` statements and eliminating SQL injection or mutation risks.
- **Strict Typed Contracts**: All responses are validated through **Pydantic v2** models before reaching the client.
- **Interactive GPT Demo Client**: Out-of-the-box demonstration agent leveraging the **OpenAI Agents SDK** and evidence-based reasoning prompts.
- **Spec-Driven Development**: Engineered incrementally using **OpenSpec** for complete requirements traceability.
---
## ๐๏ธ System Architecture
```mermaid
flowchart TD
User([User]) <--> Agent[GPT Agent / OpenAI Agents SDK]
Agent <-->|MCP Protocol / stdio| Server[MCP Analytics Server]
subgraph Server_Internal [MCP Analytics Server Boundary]
Server --> Tools[Tool Layer]
Tools --> DataTools[Dataset Tools]
Tools --> ChurnTools[Churn Analytics Tools]
Tools --> SQLTool[Read-Only SQL Tool]
SQLTool --> SQLGuard[SQL Guard Security Layer]
DataTools --> AnalyticsSvc[AnalyticsService]
ChurnTools --> AnalyticsSvc
SQLGuard --> DBSvc[DatabaseService]
AnalyticsSvc --> DBSvc
DBSvc --> DuckDB[(DuckDB)]
end
DuckDB --> Table[(customers Table - Telco Dataset)]
```
---
## ๐ก๏ธ Safe SQL Execution & Security Boundaries
Any SQL input received from an AI agent is treated as **untrusted input**. The server enforces strict AST validation via `sqlglot` before query execution:
```
Allowed Operations:
โ
SELECT contract, AVG(monthly_charges) FROM customers GROUP BY contract
โ
WITH cohorts AS (SELECT * FROM customers WHERE tenure > 24) SELECT COUNT(*) FROM cohorts
Blocked Operations:
โ DELETE FROM customers WHERE churn = true (Mutation Rejected)
โ DROP TABLE customers (DDL Rejected)
โ SELECT * FROM customers; DROP TABLE customers (Multi-statement Rejected)
โ ATTACH 'external.db' (Engine I/O Rejected)
```
- **Row Limit Guard**: Ad-hoc queries are capped at `MAX_RESULT_ROWS = 100` to protect the agent's context window.
- **Table Allowlists**: Only authorized analytics tables (`customers`) can be queried.
---
## ๐งฐ MCP Tools Catalog
| Tool Name | Purpose | Key Parameters | Return Type |
|---|---|---|---|
| `get_dataset_info` | High-level dataset metadata, row and column counts, primary table name, target variable. | *None* | `DatasetInfo` |
| `list_columns` | Schema inspection returning all available columns and their database data types. | *None* | `list[ColumnInfo]` |
| `describe_column` | Statistical metrics (`min`, `max`, `mean`, `median`) for numeric columns, or category distributions for categorical columns. | `column: str` | `NumericColumnDescription` / `CategoricalColumnDescription` |
| `get_churn_summary` | Overall customer count, churned count, retained count, and historical churn rate in `[0.0, 1.0]`. | *None* | `ChurnSummary` |
| `get_churn_by_dimension` | Segmented churn metrics grouped by an approved dimension (`contract`, `internet_service`, `payment_method`, etc.). | `dimension: str` | `DimensionChurnResult` |
| `run_readonly_sql` | Guarded analytical SQL execution for complex custom calculations not covered by standard tools. | `query: str` | `SQLResult` |
---
## ๐ Quickstart Guide
### 1. Prerequisites
- Python 3.11+
- Git
### 2. Installation
```bash
# Clone repository
git clone https://github.com/Jojeda96/mcp-analytics-server.git
cd mcp-analytics-server
# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows: .\.venv\Scripts\Activate.ps1
# Install in editable mode with development tools
pip install -e ".[dev]"
```
### 3. Build Analytics Database
```bash
# Ingest raw Telco CSV, validate schema, normalize, and build DuckDB
python scripts/build_database.py
```
### 4. Run the MCP Server
```bash
# Run server standalone over stdio
mcp-analytics
# or
python -m mcp_analytics.server
```
### 5. Run the Interactive GPT Demo Client
Configure your OpenAI API key in `.env`:
```bash
cp .env.example .env
# Edit .env and set OPENAI_API_KEY=sk-...
```
Run the interactive demo:
```bash
# Interactive REPL mode
python client/gpt_demo.py
# Or evaluate all 10 standard demonstration questions in batch
python client/gpt_demo.py --all-examples
```
---
## ๐ Connecting to MCP Clients
### Claude Desktop / Cursor
Add the following configuration to your `claude_desktop_config.json` or Cursor MCP settings:
```json
{
"mcpServers": {
"telco-analytics": {
"command": "python",
"args": ["-m", "mcp_analytics.server"],
"cwd": "/absolute/path/to/mcp-analytics-server",
"env": {
"DUCKDB_PATH": "data/processed/telco.duckdb",
"LOG_LEVEL": "INFO",
"MAX_RESULT_ROWS": "100"
}
}
}
}
```
---
## ๐งช Testing & Quality Assurance
```bash
# Run complete test suite (Unit & Integration) with coverage
pytest --cov=src --cov-report=term-missing
# Run Ruff linter and formatter checks
ruff check .
ruff format --check .
# Run static type checking
mypy src client scripts tests
```
---
## ๐ Development Workflow (OpenSpec)
This project was developed following **Spec-Driven Development (SDD)** with [OpenSpec](https://github.com/Fission-AI/OpenSpec). Every capability is tracked through explicit proposals, delta specs, design documents, and verifiable tasks:
```text
openspec/
โโโ specs/ # Consolidated capabilities
โ โโโ project-foundation/
โ โโโ telco-data-foundation/
โ โโโ core-analytics-service/
โ โโโ core-mcp-tools/
โ โโโ safe-readonly-sql-tool/
โ โโโ openai-gpt-demo-client/
โ โโโ portfolio-hardening/
โโโ changes/archive/ # Historical change audit trail
```
---
## ๐ Project Structure
```text
mcp-analytics-server/
โโโ .github/workflows/ci.yml # GitHub Actions CI matrix pipeline
โโโ assets/ # Diagrams and visual assets
โโโ client/
โ โโโ gpt_demo.py # Interactive OpenAI Agents SDK demo client
โโโ data/
โ โโโ raw/ # Source CSV files
โ โโโ processed/ # Generated DuckDB database
โโโ docs/
โ โโโ architecture.md # Deep-dive architecture and layers
โ โโโ security.md # Threat model and AST SQL Guard details
โ โโโ decisions.md # Architecture Decision Records (ADRs)
โโโ examples/
โ โโโ questions.md # 10 evaluated demo business questions
โ โโโ mcp-config.example.json # Standard client configuration
โโโ scripts/
โ โโโ download_dataset.py # Dataset provenance & download instructions
โ โโโ validate_dataset.py # Strict raw data schema & domain validator
โ โโโ build_database.py # Data cleaner and DuckDB table builder
โโโ src/mcp_analytics/
โ โโโ config.py # Pydantic Settings and environment config
โ โโโ errors.py # Domain exception hierarchy
โ โโโ server.py # MCP server lifecycle and CLI entrypoint
โ โโโ schemas/ # Pydantic response models
โ โโโ security/ # AST SQLGuard parser
โ โโโ services/ # DatabaseService & AnalyticsService
โ โโโ tools/ # Dataset, Analytics & SQL MCP tools
โโโ tests/
โ โโโ fixtures/ # Curated sample CSV test fixtures
โ โโโ unit/ # Fast unit tests for logic and security
โ โโโ integration/ # Database and MCP tool integration tests
โโโ Dockerfile # Containerization recipe
โโโ pyproject.toml # Package definition & tool configs
โโโ CHANGELOG.md # Version release notes
โโโ LICENSE # MIT License
โโโ README.md
```
---
## ๐ License
This project is licensed under the MIT License โ see the [LICENSE](LICENSE) file for details.
TDQS
Scored across 6 tools
Each tool serves a distinct purpose: dataset overview, column discovery, column statistics, overall churn summary, grouped churn analysis, and custom SQL fallback. The overlap between churn summary and churn by dimension is clearly differentiated by the latter's grouping parameter, and SQL is explicitly a last resort. No ambiguity remains for the agent.
All tools follow a consistent verb_noun snake_case pattern: get_dataset_info, list_columns, describe_column, get_churn_summary, get_churn_by_dimension, run_readonly_sql. The verbs (get, list, describe, run) and noun phrases (dataset_info, columns, column, churn_summary, etc.) are uniform, creating a predictable and readable API surface.
With 6 tools, the server is well-scoped for its purpose of analyzing a single churn dataset. Each tool addresses a distinct analytical need, and none feel redundant or extraneous. The count sits comfortably within the ideal 3-15 range.
The tool set covers the full analytics lifecycle: discovery (dataset info, columns), exploration (describe column), summary statistics (churn summary), dimension breakdowns (churn by dimension), and arbitrary ad-hoc queries (SQL fallback). The inclusion of read-only SQL ensures no analytical question remains unanswered, making the surface effectively complete for a read-only analytics server.