nveil
AI-powered data visualization MCP server that generates publication-ready charts from natural language descriptions while keeping data local.
README
<!-- mcp-name: io.github.nveil-ai/nveil -->
<p align="center"> <img src="https://raw.githubusercontent.com/nveil-ai/nveil-toolkit/main/assets/logo.png" alt="NVEIL" width="180"> </p>
<h1 align="center">NVEIL Toolkit</h1>
<p align="center"> <strong>Describe your data. Get production charts. Your data stays local.</strong> </p>
<p align="center"> <a href="https://pypi.org/project/nveil/"><img src="https://img.shields.io/pypi/v/nveil?color=orange&label=PyPI" alt="PyPI"></a> <a href="https://pypi.org/project/nveil/"><img src="https://img.shields.io/pypi/pyversions/nveil?color=blue" alt="Python"></a> <a href="https://docs.nveil.com"><img src="https://img.shields.io/badge/docs-docs.nveil.com-blue" alt="Docs"></a> <a href="LICENSE"><img src="https://img.shields.io/badge/license-AGPL--3.0--or--later-blue" alt="License"></a> </p>
<p align="center"> <a href="https://docs.nveil.com/getting-started/quickstart/">Quickstart</a> • <a href="https://docs.nveil.com/api-reference/">API Reference</a> • <a href="https://docs.nveil.com/examples/">Examples</a> • <a href="https://docs.nveil.com/changelog/">Changelog</a> </p>
NVEIL is an AI-powered data visualization toolkit. Write one line of natural language, and NVEIL processes your data and generates publication-ready visualizations — no chart code, no hallucinations, no data leaving your machine.
import nveil
nveil.configure(api_key="nveil_...")
# Pass a file path directly — no DataFrame loading required.
spec = nveil.generate_spec("Revenue by region, colored by quarter", "sales.csv")
fig = spec.render("sales.csv") # 100% local — no API call
nveil.show(fig) # opens in browser
From your shell
After pip install nveil the nveil command is on your $PATH:
export NVEIL_API_KEY=nveil_...
# Ground yourself on the dataset (shape / dtypes / head preview)
nveil describe sales.csv
# Generate HTML + PNG + a reusable .nveil spec, print the explanation
nveil generate "Revenue by region, colored by quarter" \
--data sales.csv --format all --explain
# Re-render an existing spec on fresh data — no API call
nveil render chart.nveil --data new_sales.csv
For AI agents (Claude Code / Claude Desktop / Cursor / Codex / …)
NVEIL ships first-class integrations:
# Claude Code / Claude Desktop — install the bundled skill
nveil install-skill
# Claude Desktop, Cursor, any MCP client — add an MCP server:
# {"mcpServers": {"nveil": {"command": "nveil", "args": ["mcp"]}}}
nveil mcp # stdio server; launched by the MCP client
<p align="center"> <img src="https://raw.githubusercontent.com/nveil-ai/nveil-toolkit/main/assets/dashboard.png" alt="NVEIL multi-panel dashboard with charts, heatmaps, and flow diagrams" width="800"> </p>
Why NVEIL?
| Capability | NVEIL | Chatbot data analysis¹ | LLM-to-viz libraries² | Traditional plotting³ |
|---|---|---|---|---|
| Natural-language input | ✓ | ✓ | ✓ | ✗ |
| Raw data stays on your machine | ✓ | ✗ | ✗ | ✓ |
| Only schema + stats sent to server | ✓ | ✗ | ✗ | N/A |
| Deterministic, reproducible output | ✓ | ✗ | ✗ | ✓ |
| Offline re-rendering, zero API calls | ✓ | ✗ | ✗ | ✓ |
Portable saved specs (.nveil files) |
✓ | ✗ | ✗ | ✗ |
| 2D + 3D + geospatial + scientific | ✓ | 2D | 2D | varies |
| Multi-backend (Plotly, VTK, DeckGL) | ✓ | ✗ | ✗ | ✗ |
| Data processing engine | ✓ | ✓ | partial | ✗ |
<sub>¹ ChatGPT Advanced Data Analysis, Claude Analysis tool, Gemini Data Agent · ² PandasAI, LIDA, Julius, Vanna · ³ Plotly, Matplotlib, Seaborn</sub>
How It Works
Your Data ──> Toolkit ──metadata only──> NVEIL AI ──> Processing Plan ──> Local Execution ──> Result
^ ^
raw data stays here raw data stays here
- You describe what you want in plain language
- NVEIL AI plans the data processing and visualization (only metadata is sent — column names, types, statistics)
- The Toolkit executes locally — joins, aggregations, pivots, rendering — all on your machine
- You get a figure — Plotly, VTK, or DeckGL, auto-selected for your data
Key Features
<table> <tr> <td width="50%">
🧠 Two Engines in One
Data processing (joins, pivots, aggregations, geocoding, time series) AND visualization generation from a single prompt.
🔒 Data Privacy by Design
Raw data never leaves your machine. Only column names, types, and aggregate statistics are sent.
📈 Multi-Backend Rendering
Auto-detects the best engine: Plotly (2D charts), VTK (3D/medical), DeckGL (geospatial).
</td> <td width="50%">
🧪 Auditable Results
Powered by constraint solving, not random generation. Same input = same output, every time.
⚡ Offline Rendering
spec.render() runs 100% locally with zero API calls.
💾 Reusable Specs
Save to .nveil files, reload later, render on new data — no server needed.
</td> </tr> </table>
Beyond Simple Charts
<p align="center"> <img src="https://raw.githubusercontent.com/nveil-ai/nveil-toolkit/main/assets/ai-chat.png" alt="NVEIL AI chat — conversational data exploration with geospatial heatmaps" width="800"> </p>
NVEIL handles geospatial heatmaps, 3D volumes, scientific visualizations, medical imaging (DICOM), biosignal data (EDF/EDF+), network graphs, and 50+ other visualization types — all from natural language.
Save Once, Render Forever
# Generate once (API call)
spec = nveil.generate_spec("Monthly trend by category", df)
spec.save("trend.nveil")
# Reload anywhere — no API call, no server, no cost
spec = nveil.load_spec("trend.nveil")
fig = spec.render(fresh_data)
nveil.save_image(fig, "report.png")
Installation
pip install nveil
Requirements: Python 3.10+
Getting Started
- Create an account at app.nveil.com
- Generate an API key in Settings
- Start visualizing
import os
import nveil
nveil.configure(api_key=os.environ["NVEIL_API_KEY"])
spec = nveil.generate_spec("scatter plot of price vs area", df)
fig = spec.render(df)
nveil.show(fig)
See the examples/ directory for more usage patterns.
Documentation
Full documentation is available at docs.nveil.com:
- Quickstart Guide
- Core Concepts — sessions, specs, and the two-stage flow
- API Reference — full reference for all public functions
- Privacy Model — what data is sent, what stays local
- Examples — bar charts, multi-dataset, offline rendering
Contributing
Contributions are welcome under the project's Contributor License Agreement. Bug reports and feature requests are welcome via GitHub Issues.
License
GNU AGPL v3 or later. See LICENSE. Commercial dual-licensing is available — contact pierre.jacquet@nveil.com.
<p align="center"> <a href="https://nveil.com">Website</a> • <a href="https://docs.nveil.com">Documentation</a> • <a href="https://app.nveil.com">Platform</a> </p>
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。