MoldSim MCP Server

Injection molding simulation expertise — materials, process validation, and DFM checks

Local serverstdioTypeScript

What is the MoldSim MCP server?

MoldSim MCP server exists for a simple reason — assistants are far more useful when they can act on MoldSim directly instead of describing what you should do. Injection molding simulation expertise — materials, process validation, and DFM checks.

What you get

An MCP (Model Context Protocol) server that gives AI assistants expert knowledge about injection molding simulation. Material properties, process validation, troubleshooting, and simulation specification generation — all available as tools.

Setting it up

Installation goes through your MCP client rather than a global install: point it at moldsim-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once MoldSim is connected, these are the calls the assistant has available:

  • query_simulation_knowledge — Free-text Q&A against the knowledge base. Ask about defects, DFM rules, mesh strategies, process optimization
  • get_material_properties — Material property lookup. Returns Cross-WLF viscosity, Tait PVT, thermal, processing window, and mechanical data
  • validate_process_parameters — Checks your process parameters against the material's processing window. Flags errors, warnings, and provides suggestions
  • generate_simulation_spec — Natural language → structured simulation specification. Describe the part and get back analysis types, mesh recommendations, process conditions, and
  • compare_materials — Side-by-side comparison of 2-4 materials. Processing windows, thermal properties, mechanical data, and auto-generated key differences
  • generate_dfm_checklist — Design for Manufacturability checklist with pass/warn/fail ratings. Input part parameters and get 15+ DFM rule checks

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the moldsim mcp server does with a few real requests.

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MoldSim's toolset — query_simulation_knowledge, get_material_properties, validate_process_parameters and 3 more — is a fair guide to whether it matches your workflow. It is maintained by kobzevvv; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
query_simulation_knowledgeFree-text Q&A against the knowledge base. Ask about defects, DFM rules, mesh strategies, process optimization.
get_material_propertiesMaterial property lookup. Returns Cross-WLF viscosity, Tait PVT, thermal, processing window, and mechanical data.
validate_process_parametersChecks your process parameters against the material's processing window. Flags errors, warnings, and provides suggestions.
generate_simulation_specNatural language → structured simulation specification. Describe the part and get back analysis types, mesh recommendations, process conditions, and expected outputs.
compare_materialsSide-by-side comparison of 2-4 materials. Processing windows, thermal properties, mechanical data, and auto-generated key differences.
generate_dfm_checklistDesign for Manufacturability checklist with pass/warn/fail ratings. Input part parameters and get 15+ DFM rule checks.

How to install the MoldSim MCP server

{
  "mcpServers": {
    "moldsim": {
      "command": "npx",
      "args": ["-y", "moldsim-mcp"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use MoldSim to query simulation knowledge.
  • Use MoldSim to get material properties.
  • Use MoldSim to validate process parameters.

Frequently asked questions

It connects MoldSim to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (query_simulation_knowledge, get_material_properties, validate_process_parameters, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MoldSim directly.