Metadata-Version: 2.4
Name: radia-mcp
Version: 0.11.0
Summary: MCP servers for the Radia CAE ecosystem: standalone Cubit + build123d via Plan A (persistent Cubit GUI + PyQt5 QTimer + file-drop IPC). 0.11.0 adds scraped example libraries: build123d_examples (GitHub gumyr/build123d/examples) + cubit_examples (Coreform forum). 0.10.0: cubit_batch_try + cubit_mesh_auto scheme ladder. radia-mcp[radia] enables radia-coupled servers.
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"]}
  }
}
```
