CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

MoldSim MCP Server

kobzevvv/moldsim-mcp
3STDIOregistry active
Summary

Wraps injection molding simulation expertise into six MCP tools: material property lookup for 21 thermoplastics with Cross-WLF viscosity and Tait PVT data, process parameter validation against processing windows, natural language to simulation spec generation, material comparison tables, DFM checklist generation with 15+ rule checks, and free-text Q&A against a knowledge base covering defects, meshing strategies, and process optimization. Built on Qdrant vector search with embedded HuggingFace transformers. Software-agnostic knowledge that applies to Moldflow, Moldex3D, Cadmould, and similar packages. Reach for this when you need Claude to troubleshoot warpage, recommend mesh types, validate melt temperatures, or generate structured simulation inputs without opening documentation.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

MoldSim MCP Server

MIT License npm MCP

Give your AI assistant injection molding expertise.

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.

Website: moldsim.com

Why

Setting up injection molding simulations (Moldflow, Moldex3D, Cadmould) requires deep knowledge: Cross-WLF viscosity models, Tait PVT data, processing windows, mesh strategies, DFM rules. This MCP server makes that knowledge available to any AI assistant that supports MCP.

Quick Start

Claude Code (recommended)

claude mcp add moldsim -- npx -y moldsim-mcp

That's it. Ask Claude about injection molding — it will automatically use MoldSim tools.

claude "What causes warpage in glass-filled nylon parts?"
claude "Give me the Cross-WLF parameters for PC/ABS"
claude "Validate: ABS at 245C melt, 60C mold, 2.5mm wall"

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):

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

From source

git clone https://github.com/kobzevvv/moldsim-mcp.git
cd moldsim-mcp
npm install
npm run build

Then point your MCP client to node dist/index.js.

Tools

query_simulation_knowledge

Free-text Q&A against the knowledge base. Ask about defects, DFM rules, mesh strategies, process optimization.

"Why is my part warping?" → causes, solutions, simulation checks
"What mesh type should I use?" → midplane vs dual-domain vs 3D guidance
"How to reduce cycle time?" → cooling optimization strategies

get_material_properties

Material property lookup. Returns Cross-WLF viscosity, Tait PVT, thermal, processing window, and mechanical data.

21 materials included: ABS, PP Homo, PP Copo, PA6, PA66, PA66-GF30, PC, PC/ABS, POM, HDPE, LDPE, PMMA, PBT, PBT-GF30, PET, PS, HIPS, TPU, SAN, ASA, PPE/PS

"PA66-GF30" → Cross-WLF coefficients, Tait PVT, processing window 275-310°C, fiber effects
"PC" → all properties or filter by group (viscosity, thermal, processing)

validate_process_parameters

Checks your process parameters against the material's processing window. Flags errors, warnings, and provides suggestions.

material: "ABS", melt_temp_C: 280 → ERROR: exceeds max 260°C, risk of degradation
material: "PA66", mold_temp_C: 40 → WARNING: below min 70°C, poor crystallization

generate_simulation_spec

Natural language → structured simulation specification. Describe the part and get back analysis types, mesh recommendations, process conditions, and expected outputs.

"Automotive dashboard panel in PC/ABS, 2.5mm wall, warpage analysis"
→ Fill+Pack+Cool+Warp sequence, dual-domain mesh, process conditions, expected outputs

compare_materials

Side-by-side comparison of 2-4 materials. Processing windows, thermal properties, mechanical data, and auto-generated key differences.

["abs-generic", "pc", "pa66-gf30"] → comparison table with stiffness, shrinkage, heat resistance diffs

generate_dfm_checklist

Design for Manufacturability checklist with pass/warn/fail ratings. Input part parameters and get 15+ DFM rule checks.

material: "ABS", wall: 2mm, rib: 1.5mm, draft: 0.5°
→ 16 checks: wall OK, rib WARN (75% ratio), draft WARN (below 1°), sink risk, venting...

Examples

Ask your AI assistant:

  • "What are the Cross-WLF parameters for PA66-GF30?"
  • "I'm getting sink marks on my PC housing — what should I check?"
  • "Validate my process: ABS at 250°C melt, 70°C mold, 2mm wall"
  • "Generate a simulation spec for a PP container with 1.5mm walls"
  • "Compare ABS vs PC vs PA66-GF30 for an automotive connector"
  • "Run a DFM check: 2mm wall, 1.5mm ribs, 0.5° draft in PC"
  • "What mesh type should I use for a thick-walled POM gear (5mm)?"
  • "How do I fix warpage in a glass-filled PA66 connector?"

Knowledge Coverage

AreaCoverage
Materials21 grades with Cross-WLF, Tait PVT, thermal, mechanical, processing + comparison
DefectsShort shot, flash, sink marks, warpage, weld lines, burn marks, jetting, splay, voids, flow marks
SimulationMesh sensitivity, race tracking, cooling, overpacking, shear rate
ProcessCycle time, gate location, V/P switchover, degradation, crystallization, fiber orientation
DFMWall thickness, ribs, draft, radii, bosses, gating, tolerances, shrinkage, venting
MeshingMidplane, dual-domain, 3D — when to use, element sizing, quality metrics

Compatible Software

MoldSim MCP provides software-agnostic knowledge that applies to all major injection molding simulation packages:

  • Autodesk Moldflow — Adviser & Insight
  • Moldex3D — all editions
  • CADMOULD — Simcon
  • SIGMASOFT — Virtual Molding
  • SolidWorks Plastics

Tech Stack

  • Runtime: Node.js, TypeScript
  • Search: Qdrant vector database (local, embedded)
  • Embeddings: HuggingFace transformers
  • Protocol: Model Context Protocol (MCP)

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
Packagemoldsim-mcp
TransportSTDIO
UpdatedMar 1, 2026
View on GitHub