viznoir

viznoir

Viznoir empowers AI agents to directly analyze and visualize complex 3D scientific and engineering data in cinematic resolution using a fully headless VTK engine. It enables LLMs to seamlessly execute advanced physical analysis, 3D rendering, and generate publication-ready animations purely through natural language commands.

Category
访问服务器

README

viznoir

English | 한국어 | 中文 | 日本語 | Deutsch | Français | Español | Português

<p align="center"> <img src="https://raw.githubusercontent.com/kimimgo/viznoir/main/www/public/showcase/cavity_story.webp" alt="viznoir showcase" width="720" /> <br> <strong>VTK is all you need.</strong><br> Cinema-quality science visualization for AI agents. </p>

<p align="center"> <b><a href="#quick-start">Quickstart</a></b> · <b><a href="https://kimimgo.github.io/viznoir/docs">Docs</a></b> · <b><a href="https://github.com/kimimgo/viznoir">GitHub</a></b> </p>

<p align="center"> <a href="https://github.com/kimimgo/viznoir/actions/workflows/ci.yml"><img src="https://github.com/kimimgo/viznoir/actions/workflows/ci.yml/badge.svg" alt="CI"></a> <a href="https://pypi.org/project/mcp-server-viznoir/"><img src="https://img.shields.io/pypi/v/mcp-server-viznoir" alt="PyPI"></a> <a href="https://github.com/kimimgo/viznoir/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT"></a> <a href="https://github.com/kimimgo/viznoir/stargazers"><img src="https://img.shields.io/github/stars/kimimgo/viznoir?style=flat" alt="Stars"></a> </p>

viznoir MCP server


What is viznoir?

An MCP server that gives AI agents full access to VTK's rendering pipeline — no ParaView GUI, no Jupyter notebooks, no display server. Your agent reads simulation data, applies physics filters, renders cinema-quality images, and exports animations. All headless.


How it works

<table> <tr> <td align="center" width="33%"> <h3>01</h3> <b>Point to your data</b><br><br> <code>inspect_data("cavity.foam")</code> </td> <td align="center" width="33%"> <h3>02</h3> <b>Ask in natural language</b><br><br> <em>"Render pressure with cinematic lighting"</em> </td> <td align="center" width="33%"> <h3>03</h3> <b>Get cinema-quality output</b><br><br> PNG · MP4 · glTF · LaTeX </td> </tr> </table>


Works with

<table> <tr> <td align="center" width="16%"><sub><b>Claude Code</b></sub></td> <td align="center" width="16%"><sub><b>Cursor</b></sub></td> <td align="center" width="16%"><sub><b>Windsurf</b></sub></td> <td align="center" width="16%"><sub><b>Gemini CLI</b></sub></td> <td align="center" width="16%"><sub><b>Codex</b></sub></td> <td align="center" width="16%"><sub><b>Any MCP Client</b></sub></td> </tr> </table>

<p align="center"><em>If it speaks MCP, it renders.</em></p>


Right for you if

  • ✅ You run CFD/FEA simulations and want automated post-processing
  • ✅ You want cinema-quality renders without learning ParaView
  • ✅ You need headless visualization in CI/CD pipelines
  • ✅ You want one prompt to go from raw data to publication figures
  • ✅ You process 50+ file formats (OpenFOAM, CGNS, Exodus, STL, ...)

Features

<table> <tr> <td align="center" width="33%"> <h3>🎬 Cinema Render</h3> 3-point lighting, SSAO, FXAA, PBR materials. Publication-ready in one call. </td> <td align="center" width="33%"> <h3>🔬 Physics Analysis</h3> Vortex detection, stagnation points, gradient stats, Reynolds number. </td> <td align="center" width="33%"> <h3>📊 Data Extraction</h3> Line plots, surface integrals, time-series probes, statistical summaries. </td> </tr> <tr> <td align="center" width="33%"> <h3>🎞️ Animation</h3> 7 physics presets, 17 easing functions, scene transitions, video export. </td> <td align="center" width="33%"> <h3>🧩 50+ Formats</h3> OpenFOAM, VTK, CGNS, Exodus, STL, glTF, NetCDF, PLOT3D, and more. </td> <td align="center" width="33%"> <h3>🤖 Agent Harness</h3> <code>auto_postprocess</code> meta-tool with MCP sampling for full autonomy. </td> </tr> <tr> <td align="center" width="33%"> <h3>📐 Adaptive Resolution</h3> analyze 480p, preview 720p, publish 1080p. Context-aware quality scaling. </td> <td align="center" width="33%"> <h3>🔄 Pipeline DSL</h3> Compose multi-step filter chains into a single executable pipeline. </td> <td align="center" width="33%"> <h3>🖥️ Headless GPU</h3> EGL/OSMesa rendering, Docker support, no display server needed. </td> </tr> </table>


Without viznoir vs. With viznoir

<table> <tr> <th width="50%">Without viznoir</th> <th width="50%">With viznoir</th> </tr> <tr> <td>❌ Open ParaView GUI, click through menus, export manually</td> <td>✅ One prompt, headless, cinema-quality, automated</td> </tr> <tr> <td>❌ Write 200-line VTK Python scripts for each visualization</td> <td>✅ Natural language — the agent writes the pipeline</td> </tr> <tr> <td>❌ No rendering in CI/CD — need a display server</td> <td>✅ EGL/OSMesa headless — runs anywhere, including Docker</td> </tr> <tr> <td>❌ Manual camera placement, lighting, colormap tuning</td> <td>✅ PCA auto-camera, 3-point lighting, adaptive resolution</td> </tr> </table>


What viznoir is NOT

Not a simulation solver It visualizes results, it does not run CFD/FEA solvers
Not ParaView No GUI — pure headless API designed for AI agents
Not a Jupyter widget MCP server, not an interactive notebook extension
Not a mesh generator It reads meshes, it does not create them

Quick Start

pip install mcp-server-viznoir

Add to your MCP client config:

{
  "mcpServers": {
    "viznoir": {
      "command": "mcp-server-viznoir"
    }
  }
}

Then ask your AI agent:

"Open cavity.foam, render the pressure field with cinematic lighting, then create a physics decomposition story."


Numbers

22 MCP tools · 12 resources · 4 prompts · 1505+ tests 97% coverage · 50+ file formats · 7 animation presets · 17 easing functions


Documentation

Homepagekimimgo.github.io/viznoir

Developer docskimimgo.github.io/viznoir/docs — full tool reference, domain gallery, architecture guide


Contributing

Contributions are welcome. Please open an issue first to discuss what you would like to change.

pip install -e ".[dev]"
pytest --cov=viznoir -q
ruff check src/ tests/

License

MIT


Star History

<p align="center"> <a href="https://star-history.com/#kimimgo/viznoir&Date"> <img src="https://api.star-history.com/svg?repos=kimimgo/viznoir&type=Date" alt="Star History Chart" width="600" /> </a> </p>


<p align="center"> <em>Open source under MIT. Built for engineers who'd rather prompt than click.</em> </p>

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选