Metadata-Version: 2.4
Name: radia-mcp
Version: 0.7.0
Summary: MCP servers for the Radia CAE ecosystem. Standalone for Cubit and build123d (Plan A: persistent Cubit GUI + PyQt5 QTimer + file-drop IPC, socket-free). 0.7.0 adds cubit_checkpoint / cubit_restore (named .cub5 snapshots, lightweight undo) and cubit_mesh_diagnose (per-volume meshing analysis with scheme alternatives). Radia-coupled servers (radia-ngsolve, ih, electromagnet, peec, gmsh, elf) require the `radia` extra.
Author: Kengo Sugahara
License: BSD-3-Clause
Project-URL: Repository, https://github.com/ksugahar/Radia
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: mcp>=1.0
Provides-Extra: build123d
Requires-Dist: build123d>=0.6; extra == "build123d"
Provides-Extra: radia
Requires-Dist: radia>=4.6.1; extra == "radia"
Provides-Extra: full
Requires-Dist: radia-mcp[build123d,radia]; extra == "full"

# radia-mcp

MCP (Model Context Protocol) servers for the Radia CAE ecosystem.

## Install

```bash
pip install radia-mcp
```

## Servers

| Server | Command | Purpose |
|--------|---------|---------|
| Radia | `mcp-server-radia` | Radia MMM/MSC/PEEC usage, linting |
| NGSolve | `mcp-server-ngsolve` | NGSolve FEM/BEM usage, linting |
| Cubit | `mcp-server-cubit` | Coreform Cubit meshing, linting |
| GMSH | `mcp-server-gmsh` | GMSH post-processing, linting |

## Claude Code Configuration

Add to your Claude Code MCP settings:

```json
{
  "mcpServers": {
    "radia": {"command": "mcp-server-radia"},
    "ngsolve": {"command": "mcp-server-ngsolve"},
    "cubit": {"command": "mcp-server-cubit"},
    "gmsh": {"command": "mcp-server-gmsh"}
  }
}
```

For local development (no pip install needed):

```json
{
  "mcpServers": {
    "radia": {"command": "python", "args": ["src/radia/mcp_server/radia/server.py"]}
  }
}
```
