Data Analyst
БесплатноНе проверенEnables natural language querying of SQL databases using AI, supporting multiple database types and automatic schema discovery.
Описание
Enables natural language querying of SQL databases using AI, supporting multiple database types and automatic schema discovery.
README
A Model Context Protocol (MCP) server that enables natural language querying of SQL databases using AI. Connect your database and ask questions in plain English - the server will generate and execute SQL queries for you.
Features
- 🤖 Natural Language to SQL: Ask questions in plain English, get SQL results
- 🔌 Multiple Database Support: MySQL, PostgreSQL, MSSQL, MongoDB, SQLite, SSAS (MDX), Elasticsearch (SQL), InfluxDB (InfluxQL)
- 📊 Schema Auto-Discovery: Automatically scans and caches your database schema
- 🛠️ MCP Integration: Works seamlessly with MCP-compatible clients
- ⚡ Efficient: Connection pooling and schema caching for performance
- 🔒 Read-only by Design: Only SELECT-style queries are executed
Query Languages
- SQL: MySQL, PostgreSQL, MSSQL, SQLite, Elasticsearch (SQL API)
- MDX: SSAS
- InfluxQL: InfluxDB
Installation
Prerequisites
- Python 3.12 or higher
- One of: MySQL, PostgreSQL, MSSQL, MongoDB, SQLite, SSAS, Elasticsearch, or InfluxDB
- OpenAI API key (or compatible API endpoint)
Setup
Clone the repository:
cd /path/to/your/workspaceCreate a virtual environment (recommended):
python3 -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activateInstall dependencies:
pip install -r requirements.txtConfigure environment variables:
Copy the example below and create a
.envfile:# LLM Configuration LLM_API_KEY=your-api-key-here LLM_MODEL=gpt-3.5-turbo LLM_API_URL=https://api.openai.com/v1
Database Configuration
DB_TYPE=mysql # mysql|postgresql|mssql|mongodb|sqlite|ssas|elasticsearch|influxdb DB_HOST=127.0.0.1 DB_PORT=3306 # 5432 (PostgreSQL), 1433 (MSSQL), 27017 (MongoDB), 2383 (SSAS), 9200 (Elasticsearch), 8086 (InfluxDB) DB_USER=root DB_PASSWORD=your-password DB_NAME=your-database-name # For InfluxDB: database name; for SSAS/Elasticsearch: catalog/index database name
SQLite only
DB_PATH=database.db
## Usage
### Running the MCP Server
Start the server using the standard MCP stdio transport:
```bash
python server.py
The server will:
- Validate configuration
- Connect to your database
- Build a schema cache
- Start listening for MCP requests
Available MCP Tools
The server exposes 3 tools that can be called by MCP clients:
1. query_database_with_prompt
Ask questions in natural language and get SQL results.
# Example: "Show me the top 5 customers by total purchases"
{
"success": true,
"query": "SELECT c.name, SUM(o.total) as total_purchases FROM customers c...",
"data": [...]
}
2. get_database_schema
Retrieve the complete database schema.
{
"success": true,
"schema": {
"users": {
"name": "users",
"columns": {...}
}
}
}
3. build_db_definition
Rebuild the schema cache from the database.
{
"success": true,
"message": "Successfully loaded schema for 8 tables",
"tables": ["users", "orders", "products", ...]
}
Integration with MCP Clients
To use this server with an MCP client (like Claude Desktop), add it to your MCP configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"data-analyst": {
"command": "python",
"args": ["/path/to/mcp-data-analyst/server.py"],
"env": {
"LLM_API_KEY": "your-key",
"DB_TYPE": "mysql",
"DB_HOST": "localhost",
"DB_NAME": "your_db"
}
}
}
}
Development
Adding a New Database Type
- Create a new file in
DataAnalyst/database/Type/(e.g.,SQLite.py) - Extend the
BaseDatabaseabstract class - Implement all required methods:
__init__,execute_query,build_definition,close - Add the new type to
DbTypesenum - Update
DataAnalyst/database/Type/__init__.pyto export your class - Update
server.pyto handle the new database type
Examples
Example 1: Customer Analysis
Query: "Show me the top 10 customers by total order value"
Generated SQL:
SELECT c.customer_name, SUM(o.total_amount) as total_value
FROM customers c
JOIN orders o ON c.id = o.customer_id
GROUP BY c.id, c.customer_name
ORDER BY total_value DESC
LIMIT 10;
Example 2: Product Inventory
Query: "Which products are low in stock (less than 10 units)?"
Generated SQL:
SELECT product_name, quantity_in_stock
FROM products
WHERE quantity_in_stock < 10
ORDER BY quantity_in_stock ASC;
Contributing
Contributions are welcome! Please ensure:
- Code follows PEP 8 style guidelines
- All functions have type hints and docstrings
- New database types extend
BaseDatabase - Changes maintain backward compatibility
Support
For issues, questions, or contributions, please open an issue on the repository.
Built with:
Установка Data Analyst
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/DonMul/MCP-Data-AnalystFAQ
Data Analyst MCP бесплатный?
Да, Data Analyst MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Data Analyst?
Нет, Data Analyst работает без API-ключей и переменных окружения.
Data Analyst — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Data Analyst в Claude Desktop, Claude Code или Cursor?
Открой Data Analyst на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
автор: wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
автор: madhurprashPostgres
Query your database in natural language
автор: AnthropicPostgreSQL
Read-only database access with schema inspection.
автор: modelcontextprotocolCompare Data Analyst with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории data
