Local BI Assistant MCP Server
Enables natural language business intelligence queries on local databases, generating SQL, visualizations, and insights with 5 MCP tools.
README
Local BI Assistant
A fine-tuned local LLM for business intelligence that generates SQL queries from natural language, served via an MCP server.
No API costs. No data leaves your network. Runs entirely on your laptop.
Features
- Fine-tuned Mistral 7B trained on your dbt schema and query history
- MCP Server with 5 tools: query_data, suggest_visualization, get_insights, explore_schema, execute_sql
- Local inference via Ollama - no external API calls
- CI/CD integration - automatically retrain when your schema changes
- Docker support - one-command setup for training and runtime
Architecture
Quick Start
Option 1: Docker (Recommended)
# Clone the repository
git clone https://github.com/janovincze/local_bi_assistant.git
cd local_bi_assistant
# Start the BI assistant (uses base Mistral model for testing)
docker compose up bi-assistant
# Or with development mode (hot reload)
docker compose --profile dev up
Option 2: Local Setup with uv (Recommended for Mac)
uv is a fast Python package installer (10-100x faster than pip).
# Install uv (if not already installed)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Clone and enter directory
git clone https://github.com/janovincze/local_bi_assistant.git
cd local_bi_assistant
# Create venv and install dependencies (with training support)
uv venv
uv sync --extra train-local
# Activate virtual environment
source .venv/bin/activate
# Build dbt models (creates sample database)
cd dbt_project && dbt build && cd ..
# Prepare training data
python -m training.scripts.prepare_data
# Train the model (QLoRA on Mac M4, ~2 hours)
python -m training.scripts.train_local
# Create Ollama model
ollama create bi-assistant -f output/mlx_lora/Modelfile
# Start MCP server
python -m mcp_server.server
Option 3: Local Setup with pip
# Clone and enter directory
git clone https://github.com/janovincze/local_bi_assistant.git
cd local_bi_assistant
# Create virtual environment
python -m venv venv
source venv/bin/activate
# Install dependencies
pip install -e ".[train-local]"
# Build dbt models
cd dbt_project && dbt build && cd ..
# Prepare training data
python -m training.scripts.prepare_data
# Train the model (QLoRA on Mac M4)
python -m training.scripts.train_local
# Create Ollama model
ollama create bi-assistant -f output/mlx_lora/Modelfile
# Start MCP server
python -m mcp_server.server
Using with Claude Desktop
Add to your Claude Desktop MCP configuration:
{
"mcpServers": {
"bi-assistant": {
"command": "python",
"args": ["-m", "mcp_server.server"],
"cwd": "/path/to/local_bi_assistant",
"env": {
"DUCKDB_PATH": "./dbt_project/jaffle_shop.duckdb",
"BI_MODEL": "bi-assistant:latest"
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
query_data |
Convert natural language to SQL and execute |
suggest_visualization |
Recommend chart types for data |
get_data_insights |
Generate automated data insights |
explore_schema |
Discover tables and columns |
execute_sql |
Run SQL queries directly |
Training Your Own Model
Model Options
| Model | Accuracy | Latency | Best For |
|---|---|---|---|
| Fine-tuned Mistral | 100% | ~5s | General BI queries, complex reasoning |
| Fine-tuned SQLCoder | 94% | ~7s | SQL-heavy workloads |
| Base SQLCoder | 88% | ~2.5s | Quick queries, speed priority |
| "Senior" Data Engineer* | ~80% | ~29 min | Coffee breaks |
*Based on 20+ interviews. Your fine-tuned 7B model might be their new colleague.
Note: 100% on sample schema; expect 93-95% on complex production schemas.
Train Mistral (Default)
python -m training.scripts.train_local
ollama create bi-assistant -f output/mlx_lora/Modelfile
Train SQLCoder (Alternative)
python -m training.scripts.train_sqlcoder
# Uses MLX with adapters - no Ollama model needed
# Automatically detected by MCP server
From Query History
Place your query logs in data/query_history/ in one of these formats:
- JSON:
[{"question": "...", "sql": "..."}, ...] - JSONL: One JSON object per line
- SQL comments:
-- Q: question\n-- A:\nSELECT ...
python -m training.scripts.prepare_data \
--dbt-project ./dbt_project \
--query-logs ./data/query_history \
--output ./data/training
CI/CD Integration
The included GitHub Actions workflow automatically retrains when:
- dbt models change (
dbt_project/models/**) - Training code changes (
training/**)
Configure secrets:
HF_TOKEN: Hugging Face API tokenWANDB_API_KEY: Weights & Biases key (optional)
Benchmarking
Compare model performance on your queries:
python scripts/benchmark_models.py
This tests all available models (Ollama and MLX) against sample queries and reports accuracy and latency.
Memory Requirements
| Operation | Memory |
|---|---|
| Inference (4-bit) | ~5 GB |
| QLoRA Training | ~7 GB |
| Full Fine-tuning | ~16 GB (GPU) |
Works on Mac M4 with 24GB RAM.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。