AgentHubAgentHub

Automox MCP Server

MCP ServerMCP Registry官方收录

com.automox/automox-mcp · v2.2.2

Official MCP server for Automox. Manage devices, patches, and policies in natural language.

概览

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

安装

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

{
  "mcpServers": {
    "automox-mcp": {
      "command": "uvx",
      "args": [
        "automox-mcp"
      ],
      "env": {
        "AUTOMOX_API_KEY": "<AUTOMOX_API_KEY>",
        "AUTOMOX_ACCOUNT_UUID": "<AUTOMOX_ACCOUNT_UUID>"
      }
    }
  }
}

环境变量

AUTOMOX_API_KEY必填secret

Your Automox API key

AUTOMOX_ACCOUNT_UUID必填

Account UUID from Automox Settings > Secrets & Keys

AUTOMOX_ORG_ID可选

Numeric Automox organization ID. Recommended — required by most tools, optional for tools that don't need org context.

相关资源

统一 Manifest

{
  "id": "com.automox/automox-mcp",
  "type": "mcp-server",
  "version": "2.2.2",
  "displayName": "Automox MCP Server",
  "description": "Official MCP server for Automox. Manage devices, patches, and policies in natural language.",
  "repository": {
    "url": "https://github.com/AutomoxCommunity/automox-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "automox-mcp",
        "version": "2.2.2",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AUTOMOX_API_KEY",
            "description": "Your Automox API key",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "AUTOMOX_ACCOUNT_UUID",
            "description": "Account UUID from Automox Settings > Secrets & Keys",
            "isRequired": true
          },
          {
            "name": "AUTOMOX_ORG_ID",
            "description": "Numeric Automox organization ID. Recommended — required by most tools, optional for tools that don't need org context."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "com.automox/automox-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/com.automox%2Fautomox-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Automox MCP Server — MCP Server 安装与配置 · AgentHub