Skip to main content
ClaudeWave

Official MCP interface for AgentFEM: create, validate, run, inspect, and verify finite-element simulations.

MCP ServersRegistry oficial0 estrellas0 forksPythonNOASSERTIONActualizado today
ClaudeWave Trust Score
80/100
Trusted
Passed
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Flags
  • !Licence file present but not machine-readable
Last scanned: 9/15/2026
Install in Claude Code / Claude Desktop
Method: UVX (Python) · agentfem-mcp
Claude Code CLI
claude mcp add agentfem-mcp -- uvx agentfem-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "agentfem-mcp": {
      "command": "uvx",
      "args": ["agentfem-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

<p align="center"><img src="https://raw.githubusercontent.com/haoming-luo/agentfem/main/logo/AgentFEM_logo.png" alt="AgentFEM" width="240"></p>

# AgentFEM MCP

[![CI](https://github.com/haoming-luo/agentfem-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/haoming-luo/agentfem-mcp/actions/workflows/ci.yml)
[![PyPI](https://img.shields.io/pypi/v/agentfem-mcp.svg)](https://pypi.org/project/agentfem-mcp/)
[![MCP Registry](https://img.shields.io/badge/MCP%20Registry-listed-6750A4)](https://registry.modelcontextprotocol.io/?q=io.github.haoming-luo%2Fagentfem)
[![AgentFEM MCP server](https://glama.ai/mcp/servers/haoming-luo/agentfem-mcp/badges/score.svg)](https://glama.ai/mcp/servers/haoming-luo/agentfem-mcp)

**One finite-element platform. Any compatible agent. Evidence intact.**

AgentFEM MCP gives Codex, Claude, and other MCP-compatible agents a small,
stable tool surface for building and running inspectable finite-element
projects. AgentFEM remains the deterministic scientific engine; the agent
interprets intent and explains evidence.

[Install from PyPI](https://pypi.org/project/agentfem-mcp/) ·
[Discover in the official MCP Registry](https://registry.modelcontextprotocol.io/?q=io.github.haoming-luo%2Fagentfem) ·
[Read the AgentFEM agent guide](https://haoming-luo.github.io/agentfem/agents/)

For a supported desktop client on macOS or Linux, download the tiny
`AgentFEM-0.1.0.mcpb` connection bundle from the
[0.1.0 release](https://github.com/haoming-luo/agentfem-mcp/releases/tag/v0.1.0).
It installs only the interface; the AgentFEM scientific runtime remains the
single source of solver capabilities, upgrades, and results.

It exposes seven tools—not hundreds of solver internals:

| Tool | Purpose |
|---|---|
| `describe_system` | Inspect the installed runtime and a compact capability map |
| `create_project` | Start from a version-matched AgentFEM template |
| `validate_project` | Report process success and scientific acceptance separately |
| `inspect_project` | Read project and recent-run identity |
| `submit_run` | Launch an isolated serial or MPI process |
| `get_run_status` | Observe a durable background job |
| `get_result_summary` | Read a compact result and trust state; request full evidence only when needed |

## Bring it to life

AgentFEM must already be installed. With `uvx`, Codex needs one command and the
adapter remains isolated from the numerical environment:

```bash
codex mcp add agentfem \
  --env AGENTFEM_MCP_ROOTS=/absolute/path/to/AgentFEMProjects \
  -- uvx --from agentfem-mcp agentfem-mcp
```

Or install the lightweight adapter in the active environment:

```bash
python -m pip install agentfem-mcp
```

The 0.1.0 lifecycle is acceptance-tested with the public AgentFEM 0.3.3 CLI
contracts and the current 0.3.7 development line.

Give your agent a project root, not your whole home directory.

### Codex

Codex officially supports local stdio MCP servers. Confirm the connection with
`codex mcp list`, then begin with:

> Use AgentFEM to create, validate, run, verify, and briefly explain a 2D
> cantilever. Keep the project and result paths visible.

### Claude Desktop and compatible clients

On macOS or Linux, open the release's `.mcpb` file in a supporting desktop
client and choose the one project folder the connection may access. AgentFEM
must already be installed. Windows support currently uses the explicit WSL2
configuration from the AgentFEM guide rather than claiming a native bridge.

Claude Code:

```bash
claude mcp add agentfem --scope user \
  --env AGENTFEM_MCP_ROOTS=/absolute/path/to/AgentFEMProjects \
  -- uvx --from agentfem-mcp agentfem-mcp
```

Claude Desktop configuration:

```json
{
  "mcpServers": {
    "agentfem": {
      "command": "agentfem-mcp",
      "env": {
        "AGENTFEM_MCP_ROOTS": "/absolute/path/to/AgentFEMProjects"
      }
    }
  }
}
```

If a desktop app cannot see the activated conda environment, set
`AGENTFEM_COMMAND` to the absolute `agentfem` executable. The official macOS
runtime, AgentFEM WSL2 runtime, and common `agentfem-env`/`fenicsx-env` layouts
are also detected automatically.

### VS Code and other models

VS Code can place the same local server in `.vscode/mcp.json`:

```json
{
  "servers": {
    "agentfem": {
      "type": "stdio",
      "command": "uvx",
      "args": ["--from", "agentfem-mcp", "agentfem-mcp"],
      "env": {
        "AGENTFEM_MCP_ROOTS": "${workspaceFolder}"
      }
    }
  }
}
```

The server is model-neutral. A DeepSeek or other model can use it through any
host that implements local MCP tools. ChatGPT connectors require a public HTTPS
server; AgentFEM will add that route only with a real authenticated compute and
artifact boundary, rather than silently uploading local models through this
adapter.

### Directory health image

The repository's minimal, unprivileged `Dockerfile` exists for MCP directory
startup and tool-introspection checks. It intentionally contains the public MCP
adapter, not a second AgentFEM solver distribution. Real simulations should use
the installed AgentFEM runtime and an explicit local project root.

### Local Codex plugin

This repository contains a portable AgentFEM workflow skill and a local Codex
marketplace under `.agents/plugins/`. It combines scientific operating guidance
with the same MCP server; it does not create a second solver interface.

## The contract

```text
AI agent
   │  seven typed MCP tools
   ▼
AgentFEM MCP ── process + path boundary
   │  versioned JSON contracts
   ▼
AgentFEM CLI → Study → Model → Step → SimulationResult
   ▼
FEniCSx / PETSc / MPI
```

- No language model or API key is embedded in AgentFEM MCP.
- No shell command or arbitrary Python string is accepted from a tool call.
- All project paths must remain under explicitly approved roots.
- Numerical runs occur in child processes, isolating PETSc/MPI lifetime from
  the MCP server.
- `completed`, `verified`, and `validated` remain different scientific states.
- Compact system discovery preserves AgentFEM's website, repository, citation,
  and its consent-first, once-per-release-series community invitation. The MCP
  server never performs an account action for the user.

## Environment controls

| Variable | Meaning |
|---|---|
| `AGENTFEM_MCP_ROOTS` | Approved project roots separated by the platform path separator |
| `AGENTFEM_COMMAND` | Absolute path to a specific `agentfem` executable |

With no root configured, the server restricts access to its working directory.
The default maximum is 16 MPI ranks and can only be changed by the server
operator, not by an agent tool call.

## Development

```bash
python -m pip install -e '.[test]'
ruff check .
pytest
python -m build
```

See [SECURITY.md](SECURITY.md) for the trust boundary and
[CONTRIBUTING.md](CONTRIBUTING.md) for contribution expectations. The
[first release evidence](docs/release-evidence.md) records protocol, package,
and real-solver acceptance separately.

AgentFEM MCP is Apache-2.0 licensed and maintained as an official companion to
[AgentFEM](https://github.com/haoming-luo/agentfem).

<!-- mcp-name: io.github.haoming-luo/agentfem -->
agentfemai-agentsai-nativeclaude-codecodexengineering-simulationfenicsxfinite-element-methodgithub-copilotmcp-servermodel-context-protocolscientific-computing

Lo que la gente pregunta sobre agentfem-mcp

¿Qué es haoming-luo/agentfem-mcp?

+

haoming-luo/agentfem-mcp es mcp servers para el ecosistema de Claude AI. Official MCP interface for AgentFEM: create, validate, run, inspect, and verify finite-element simulations. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-15.

¿Cómo se instala agentfem-mcp?

+

Puedes instalar agentfem-mcp clonando el repositorio (https://github.com/haoming-luo/agentfem-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar haoming-luo/agentfem-mcp?

+

Nuestro agente de seguridad ha analizado haoming-luo/agentfem-mcp y le ha asignado un Trust Score de 80/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene haoming-luo/agentfem-mcp?

+

haoming-luo/agentfem-mcp es mantenido por haoming-luo. La última actividad registrada en GitHub es del 2026-09-15, con 0 issues abiertos.

¿Hay alternativas a agentfem-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega agentfem-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: haoming-luo/agentfem-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/haoming-luo-agentfem-mcp)](https://claudewave.com/repo/haoming-luo-agentfem-mcp)
<a href="https://claudewave.com/repo/haoming-luo-agentfem-mcp"><img src="https://claudewave.com/api/badge/haoming-luo-agentfem-mcp" alt="Featured on ClaudeWave: haoming-luo/agentfem-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a agentfem-mcp