paraview-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@paraview-mcpload the disk_out_ref.exo file and apply a contour filter on temperature"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ParaView MCP
Connect ParaView to LLM assistants through the Model Context Protocol.
The Python server is built with FastMCP 3.x. Support for the
2026-07-28 MCP specification is planned once FastMCP 4 reaches a stable release.
paraview-mcp-server has two runtime parts:
a ParaView plugin (C++/Qt) that exposes a TCP bridge inside the ParaView GUI
a Python MCP server that connects to the plugin and serves tools to any MCP client
Prerequisites
ParaView ≥ 5.13. Pre-built plugins are available for the exact versions and platforms listed below; other ParaView releases require a source build against the matching SDK.
Related MCP server: MCP-Slicer
Quick Start
First set up the ParaView plugin. Then add the Python MCP server to Claude Code in one command:
claude mcp add paraview -- uvx paraview-mcp-serverOpen Tools > ParaView MCP in ParaView, start the bridge, and connect from Claude Code.
Set Up the ParaView Plugin
Download a pre-built plugin binary from the latest GitHub Release. Releases provide this matrix:
Platform | Architecture | ParaView versions | Package |
Linux | x86_64 | 5.13.3, 6.0.1, 6.1.1 |
|
macOS | arm64 (Apple Silicon) | 5.13.3, 6.0.1, 6.1.1 |
|
Windows | x64 | 5.13.3, 6.0.1, 6.1.1 |
|
Choose the package that names your exact ParaView version and platform. Download its
adjacent .sha256 file, verify the package, then open or extract it and follow the
included INSTALL.md. Pull requests also produce corresponding platform binaries as
short-lived GitHub Actions artifacts; GitHub Releases are the permanent distribution
channel.
macOS release images are Developer ID-signed, notarized by Apple, and include a stapled
notarization ticket. Open the .dmg, copy the contained plugin directory to a persistent
location, and load ParaViewMCP.so from that copied directory. Pull-request artifacts are
unsigned test builds and remain .tar.gz files.
Alternatively, build the plugin from source against a ParaView 5.13 or newer SDK. See CONTRIBUTING.md for full build instructions. Binary compatibility is release-series specific, so use a plugin built for your ParaView major.minor version.
Once installed:
Open Tools > Manage Plugins in ParaView.
Click Load New... and select
ParaViewMCP.so(Linux/macOS) orParaViewMCP.dll(Windows) from the plugin directory.Enable Auto Load.
Open Tools > ParaView MCP.
Click Start Server.
The ParaView MCP panel shows the connection status and execution history. Non-loopback binds require an auth token.
Configure Your MCP Client
Claude Code (CLI)
claude mcp add paraview -- uvx paraview-mcp-serverClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"paraview": {
"command": "uvx",
"args": ["paraview-mcp-server"]
}
}
}Other MCP Clients
Configure a local stdio MCP server with uvx as the command and
paraview-mcp-server as its only argument:
{
"mcpServers": {
"paraview": {
"command": "uvx",
"args": ["paraview-mcp-server"]
}
}
}Consult your client's documentation for the location and exact format of its MCP server configuration.
Configuration
The server connects to the ParaView plugin using these environment variables:
Variable | Default | Required | Description |
|
| No | Host where the ParaView plugin is listening |
|
| No | TCP port for the plugin bridge |
| — | Non-loopback only | Authentication token (must match the plugin setting) |
Defaults work for a standard local setup. Override these when connecting to ParaView on a remote machine or non-standard port:
{
"mcpServers": {
"paraview": {
"command": "uvx",
"args": ["paraview-mcp-server"],
"env": {
"PARAVIEW_HOST": "192.168.1.10",
"PARAVIEW_PORT": "9877",
"PARAVIEW_AUTH_TOKEN": "your-token"
}
}
}
}Available Tools
Tool | Description |
| Execute Python code inside the active ParaView session |
| Return a JSON snapshot of the current pipeline |
| Capture the active render view as a PNG image |
Design and Differences from ParaView_MCP
This project follows the approach of Blender-MCP and Slicer-MCP, both of which give LLMs direct code execution inside their respective application runtimes.
The existing ParaView_MCP implementation1 takes a different approach, exposing a fixed set of high-level tools without access to the underlying Python runtime, which limits flexibility for custom workflows. The major differences are:
We provide an
execute_paraview_codetool that runs arbitrary Python inside the ParaView session. The plugin records each execution and, when ParaView can capture a pipeline snapshot, lets the user restore the state from immediately before that execution. This makes generated scripts easier to inspect, reuse, and adapt for tasks such as batch processing.Architecturally, ParaView_MCP's own disclaimer states that it relies on synchronization between
pvserverand the ParaView client. That synchronization mechanism is deprecated in recent ParaView versions and can cause incorrect application views and general stability issues. This project instead runs a plugin inside the interactive ParaView process and exposes a TCP bridge, avoiding thepvserver/client synchronization path entirely.
Contributing
See CONTRIBUTING.md for build instructions, development setup, and pull request guidelines.
License
MIT — see THIRD-PARTY-NOTICES.txt for dependency licenses.
S. Liu, H. Miao, and P.-T. Bremer, "Paraview-MCP: Autonomous Visualization Agents with Direct Tool Use," in Proc. IEEE VIS 2025 Short Papers, IEEE, 2025.
↩
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityFmaintenanceConnects Claude AI to QGIS through the Model Context Protocol, allowing Claude to directly interact with and control QGIS for tasks like project creation, layer manipulation, and code execution.151,059
- AlicenseAqualityCmaintenanceConnects 3D Slicer with AI assistants through the Model Context Protocol, enabling medical image processing and scene manipulation using natural language.338MIT
- AlicenseBqualityCmaintenanceConnects Blender to AI through the Model Context Protocol to enable prompt-assisted 3D modeling and scene manipulation. It supports object creation, material control, and arbitrary Python code execution directly within the Blender environment.22MIT
- Alicense-qualityBmaintenanceConnects QGIS to an LLM through the Model Context Protocol, allowing agentic interaction with and control of QGIS for prompt-assisted project creation, layer loading, code execution, and more.GPL 3.0
Related MCP Connectors
Connect AI agents to Replynodes over the Model Context Protocol.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/failed33/paraview-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server