AgentHubAgentHub

NetLogo MCP

MCP ServerMCP Registry官方收录

io.github.Razee4315/netlogo-mcp · v1.0.2

Create, run, and analyze NetLogo agent-based models through natural conversation

概览

NetLogo MCP 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "netlogo-mcp": {
      "command": "uvx",
      "args": [
        "netlogo-mcp"
      ],
      "env": {
        "NETLOGO_HOME": "<NETLOGO_HOME>",
        "JAVA_HOME": "<JAVA_HOME>"
      }
    }
  }
}

环境变量

NETLOGO_HOME必填

Path to the NetLogo 7.0+ installation directory (e.g. C:/Program Files/NetLogo 7.0.3)

JAVA_HOME必填

Path to a Java JDK 11+ installation (not a JRE)

NETLOGO_GUI可选

Set to false for headless mode (no NetLogo window); default true

相关资源

统一 Manifest

{
  "id": "io.github.Razee4315/netlogo-mcp",
  "type": "mcp-server",
  "version": "1.0.2",
  "displayName": "NetLogo MCP",
  "description": "Create, run, and analyze NetLogo agent-based models through natural conversation",
  "repository": {
    "url": "https://github.com/Razee4315/NetLogo-MCP",
    "source": "github"
  },
  "homepage": "https://github.com/Razee4315/NetLogo-MCP",
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "netlogo-mcp",
        "version": "1.0.2",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "NETLOGO_HOME",
            "description": "Path to the NetLogo 7.0+ installation directory (e.g. C:/Program Files/NetLogo 7.0.3)",
            "isRequired": true
          },
          {
            "name": "JAVA_HOME",
            "description": "Path to a Java JDK 11+ installation (not a JRE)",
            "isRequired": true
          },
          {
            "name": "NETLOGO_GUI",
            "description": "Set to false for headless mode (no NetLogo window); default true"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.Razee4315/netlogo-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.Razee4315%2Fnetlogo-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
NetLogo MCP — MCP Server 安装与配置 · AgentHub