# AgentFEM (pypi · agentfem-mcp)

Build, run, inspect, and verify finite-element simulations with AgentFEM.

- Trust score: 65/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- pypi · `agentfem-mcp`: 65/100 (this document), [markdown](https://verifymcp.io/servers/haoming-luo-agentfem/agentfem-mcp.md), [page](https://verifymcp.io/servers/haoming-luo-agentfem/agentfem-mcp)

## Channel facts

- Registry: `pypi`
- Package: `agentfem-mcp`
- Version: `0.1.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-20.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - Runs hatchling.build at install time, a recognised native-build step with no shell scripting around it.
  - 1 of 29 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 35/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: the license (Apache Software License) isn't a recognized OSI-approved license.
  - Actively maintained (last published 5 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 324 tokens (~46/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 71/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 7 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 8 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the AgentFEM MCP server?

AgentFEM runs locally as a PyPI package, launched with uvx agentfem-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add haoming-luo-agentfem -- uvx agentfem-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "haoming-luo-agentfem": {
      "command": "uvx",
      "args": [
        "agentfem-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "haoming-luo-agentfem": {
      "command": "uvx",
      "args": [
        "agentfem-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add haoming-luo-agentfem -- uvx agentfem-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "haoming-luo-agentfem": {
      "type": "local",
      "command": [
        "uvx",
        "agentfem-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add haoming-luo-agentfem --command uvx --arg agentfem-mcp
```

### Hermes

```yaml
mcp_servers:
  haoming-luo-agentfem:
    command: "uvx"
    args: ["agentfem-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "haoming-luo-agentfem": {
      "Transport": "stdio",
      "Command": "uvx",
      "Arguments": [
        "agentfem-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add haoming-luo-agentfem -t stdio -c uvx -a agentfem-mcp
```

### Other

```json
{
  "mcpServers": {
    "haoming-luo-agentfem": {
      "command": "uvx",
      "args": [
        "agentfem-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-15 (score 65, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-09-14 (score 50)

First indexed and scored.

## MCP tools (7)

### `describe_system` (~39 tokens)

Describe AgentFEM

Inspect the installed AgentFEM runtime and approved roots. Use summary first; request full only when selecting an advanced capability.

Input parameters:

- `detail` (string)

### `create_project` (~46 tokens)

Create AgentFEM project

Create a new project from one version-matched official AgentFEM template inside an approved root.

Input parameters:

- `name`
- `path` (string, required)
- `template` (string)

### `validate_project` (~28 tokens)

Validate AgentFEM project

Run fail-closed structural and compatibility checks without solving the project.

Input parameters:

- `path` (string, required)

### `inspect_project` (~28 tokens)

Inspect AgentFEM project

Read project validation and recent immutable run identities without modifying the project.

Input parameters:

- `path` (string, required)

### `submit_run` (~52 tokens)

Submit AgentFEM run

After preflight, start a finite-element run in a separate process and return a durable job identity immediately.

Input parameters:

- `mpi_ranks` (integer)
- `name` (string)
- `path` (string, required)

### `get_run_status` (~40 tokens)

Get AgentFEM run status

Read one submitted run's status and any AgentFEM execution evidence currently available.

Input parameters:

- `job_id` (string, required)
- `path` (string, required)

### `get_result_summary` (~49 tokens)

Get AgentFEM result summary

Read the structured scientific result for a completed job or the project's latest run, including its trust state.

Input parameters:

- `detail` (string)
- `job_id`
- `path` (string, required)

## Diagnostics

Captured diagnostic sections: Provenance, Install scripts, Dependencies. The full working is on the page: https://verifymcp.io/servers/haoming-luo-agentfem/agentfem-mcp#diagnostics

## Score history

- 2026-09-20: 65
- 2026-09-19: 65
- 2026-09-18: 65
- 2026-09-17: 65
- 2026-09-16: 65
- 2026-09-15: 65
- 2026-09-14: 50

## Common questions

### What is the AgentFEM MCP server?

AgentFEM is an MCP server listed in the public MCP registry as io.github.haoming-luo/agentfem. Build, run, inspect, and verify finite-element simulations with AgentFEM. This page covers its PyPI package (agentfem-mcp).

### Is the AgentFEM MCP server safe to use?

AgentFEM scores 65 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the AgentFEM MCP server expose?

AgentFEM exposes 7 tools: describe_system, create_project, validate_project, inspect_project, submit_run, and 2 more. Their descriptions and schemas cost roughly 282 tokens of context every time the server is loaded.

### Is the AgentFEM MCP server still maintained?

AgentFEM is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- PyPI project: https://pypi.org/project/agentfem-mcp/
- Socket report: https://socket.dev/pypi/package/agentfem-mcp
- Repository: https://github.com/haoming-luo/agentfem-mcp
- Changelog RSS feed: https://verifymcp.io/servers/haoming-luo-agentfem/agentfem-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/haoming-luo-agentfem/agentfem-mcp.json
- HTML version of this page: https://verifymcp.io/servers/haoming-luo-agentfem/agentfem-mcp
