An MCP server that lets an AI assistant (Claude Code, Claude Desktop, Cursor, or any MCP client) analyze unstructured climate meshes with UXarray — locally on your machine, or remotely on an HPC system you have access to.
┌─────────────┐ stdio ┌──────────────┐ ┌─────────────────┐
│ AI client │ ◀─────▶ │ uxarray-mcp │ ◀── Globus ──────▶ │ HPC endpoint │
│ (Claude…) │ pipe │ (your laptop)│ Compute (opt) │ (Slurm/PBS node)│
└─────────────┘ └──────────────┘ └─────────────────┘
What the AI can do. Open meshes and datasets, compute area / zonal mean / vorticity / divergence, subset, remap, plot, and run multi-step workflows. All as natural-language prompts.
⚠️ What the AI can access. Any file you (or your HPC account) can read. Any compute the configured endpoint can submit. Outputs are written to your disk. See SECURITY.md before connecting any remote endpoint.
You are most likely one of:
- Local user — laptop only, no HPC. → Local install.
- HPC user, endpoint already exists — someone at your lab gave you a Globus Compute endpoint UUID. → Local install, then docs/remote-hpc.md.
- HPC user, your own personal endpoint — you have a Globus identity and shell access to an HPC machine, and want to stand up an endpoint just for yourself. → Local install, then docs/operating-an-endpoint.md.
- Group / shared endpoint operator — you're standing one up for a team, project, or lab. → Local install, then the full docs/operating-an-endpoint.md including service-account migration and the MEP allowlist.
Five steps. Each is one command unless noted.
Pick one. uv is the easiest; pip works too.
# Recommended
uv tool install --python 3.12 uxarray-mcp
# Or from a fresh clone (developer path)
git clone https://github.com/UXARRAY/uxarray-mcp-server.git
cd uxarray-mcp-server && uv sync --python 3.12Why
--python 3.12? The server uses Globus Compute to submit work to HPC endpoints, and Globus Compute's serializer is fragile across Python minor versions — a 3.13 submitter against a 3.12 endpoint worker raisesWorkerLoston non-trivial payloads. HPC sites broadly ship 3.12 conda stacks today, so we pin the install to match. Tracking removal of this pin at globus/globus-compute#2139.uvdownloads 3.12 automatically if your system doesn't have it.
uxarray-mcp setupCreates ~/.config/uxarray-mcp/config.yaml with sensible defaults. Local mode
needs nothing more.
Claude Desktop
uxarray-mcp install-claude # merges the mcpServers block into your config
# or
uxarray-mcp install-claude --print-only # prints the JSON to paste manuallyRestart Claude Desktop. The uxarray server should appear in Settings →
Developer.
Claude Code
claude mcp add uxarray --transport stdio -- uxarray-mcp serveThen /mcp in Claude Code; pick uxarray.
Cursor / other MCP clients
Add an MCP server entry pointing at uxarray-mcp serve over stdio. See your
client's MCP docs.
uxarray-mcp doctorShould print local execution: ok and (if no endpoints configured) skip the
remote checks.
In your client, try:
"Open
<path to a UGRID/MPAS/SCRIP grid file>and plot the mesh."
That's it for local use.
If you have an HPC account at a national lab or university cluster with Globus Compute available:
| You want to … | Read this |
|---|---|
| Connect to an endpoint someone else set up | docs/remote-hpc.md |
| Stand up your own endpoint | docs/operating-an-endpoint.md |
| Understand the security model first | SECURITY.md |
Both paths assume you've finished local install above.
Intent-shaped tools, not raw UXarray bindings:
get_capabilities— what can I do with this mesh?analyze_dataset— deterministic first-look: inspect, validate, area, zonal mean, plots.run_analysis— one operation at a time (gradient, curl, subset, remap, …).plot_dataset— mesh, geographic, variable, or zonal-mean plots.diagnose_endpoint,probe_path_access— endpoint health + file readability.run_workflow,resume_workflow,get_status,get_result,manage_session— persisted sessions and multi-step workflows.
Tools that can run remotely take use_remote: bool and optional endpoint: str.
The dispatcher falls back to local if the endpoint is unhealthy.
Full schema: docs/tools.md.
| Command | Purpose |
|---|---|
uxarray-mcp serve |
Run the MCP server (used by your AI client) |
uxarray-mcp setup |
Write a starter config |
uxarray-mcp endpoints add NAME UUID |
Register a Globus Compute endpoint |
uxarray-mcp endpoints list |
Show configured endpoints |
uxarray-mcp doctor |
Validate local + (optionally) remote setup |
uxarray-mcp install-claude |
Merge or print the Claude Desktop config block |
AI agents can misread prompts, pick the wrong file, get units wrong (e.g., sphere-radius scaling on derivatives), or run long jobs on your HPC allocation. uxarray-mcp does not guarantee correctness of agent-driven analysis. You are responsible for:
- Verifying numerical results before publishing.
- Reviewing what files the agent opens.
- Monitoring HPC job submissions against your allocation.
For the security model (what the agent and the endpoint operator can access), see SECURITY.md.
uv sync --extra hpc --extra docs --dev
uv run pre-commit run --all-files
uv run pytest tests/ --ignore=tests/test_remote_agent.py
uv run sphinx-build -b html docs docs/_build/htmlRelease process: docs/release.md.
See LICENSE.