New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@simlin/mcp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@simlin/mcp

MCP server for Simlin system dynamics simulation engine

latest
Source
npmnpm
Version
0.1.4
Version published
Maintainers
1
Created
Source

@simlin/mcp

MCP (Model Context Protocol) server for Simlin, a system dynamics modeling tool. This server lets AI assistants read, create, and edit stock-and-flow simulation models.

Setup

Claude Code

claude mcp add simlin npx @simlin/mcp@latest

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "simlin": {
      "command": "npx",
      "args": ["@simlin/mcp@latest"]
    }
  }
}

Other MCP clients

Any MCP-compatible client can run the server over stdio:

npx @simlin/mcp@latest

Tools

ToolDescription
ReadModelRead a model file and return a JSON snapshot with loop dominance analysis
EditModelApply operations (upsert/remove variables, name loops) to an existing model
CreateModelCreate a new empty model file

Supported file formats

FormatExtensionsReadEdit
XMILE.stmx, .xmile, .xmlYesYes
JSON (Simlin and SD-AI).sd.json, .jsonYesYes
Vensim.mdlYesNo (import only)

Skill resources

The PyPI package is pysimlin:

pip install pysimlin

Imported in Python as simlin:

import simlin

model = simlin.load("population.stmx")
run = model.run()
print(run.results["population"].iloc[-1])

The server also exposes skill resources around how to use the Python library:

  • simlin://skills/pysimlin-basics -- Loading models, simulation, DataFrame access
  • simlin://skills/scenario-analysis -- Parameter sweeps and intervention analysis
  • simlin://skills/loop-dominance -- Feedback loop analysis and visualization
  • simlin://skills/vensim-equation-syntax -- Vensim-to-XMILE function mapping

License

Apache-2.0

FAQs

Package last updated on 02 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts