Automox MCP开源工具 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
Automox MCP开源工具:An MCP server implementation for Automox,帮助用户管理和维护MCP服务,提高工作效率和安全性。
Automox MCP开源工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Automox MCP开源工具:An MCP server implementation for Automox,帮助用户管理和维护MCP服务,提高工作效率和安全性。
Automox MCP开源工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/AutomoxCommunity/automox-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"automox-mcp----": {
"command": "npx",
"args": ["-y", "automox-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Automox MCP开源工具 执行以下任务... Claude: [自动调用 Automox MCP开源工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"automox_mcp____": {
"command": "npx",
"args": ["-y", "automox-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
The official MCP server for Automox. Talk to your Automox console using natural language — this MCP server connects AI assistants like Claude to your Automox environment so you can manage devices, check compliance, run policies, and more, just by asking.
You: "Are we ready for Patch Tuesday?"
Claude: Here's your readiness summary — 3 devices need patches,
2 approvals are pending, and your patch policies run tonight at 2 AM...
[!IMPORTANT] Contributions, bug reports, and feature requests are welcome via GitHub Issues and the Automox Community.
[!CAUTION] AI assistants can make mistakes. Data produced by the MCP server may be incorrect or incomplete. If you see this happening consistently, please open an issue.
uv tool upgrade automox-mcp
uvx --refresh automox-mcp
AUTOMOX_API_KEY=your-api-key
AUTOMOX_ACCOUNT_UUID=your-account-uuid
AUTOMOX_ORG_ID=your-org-id
| Variable | Required | Default | Description |
|---|---|---|---|
AUTOMOX_API_KEY | Yes | — | Automox API key |
AUTOMOX_ACCOUNT_UUID | Yes | — | Account UUID from Secrets & Keys |
AUTOMOX_ORG_ID | Recommended | — | Numeric organization ID (required by most tools) |
AUTOMOX_MCP_READ_ONLY | No | false | Disable all write operations (84 of 130 tools remain) |
AUTOMOX_MCP_ALLOW_REMEDIATION | No | false | Opt in to the apply_remediation_actions tool, which patches/runs worklets on endpoints immediately. Off by default even in write mode. |
AUTOMOX_MCP_ALLOW_REMOTE_CONTROL | No | false | Opt in to the splashtop_bulk_install_uninstall tool, which installs/uninstalls the Splashtop client across an entire server group in one call. Off by default even in write mode. |
AUTOMOX_MCP_MODULES | No | all | Comma-separated list of modules to load (see below) |
AUTOMOX_MCP_TOKEN_BUDGET | No | 4000 | Max estimated tokens per response before truncation |
AUTOMOX_MCP_SANITIZE_RESPONSES | No | true | Sanitize API data to mitigate prompt injection |
AUTOMOX_MCP_TOOL_PREFIX | No | — | Prefix all tool names (e.g., automox) to prevent cross-server collisions |
AUTOMOX_MCP_LOG_FORMAT | No | text | Log format: text or json (structured JSON for SIEM integration) |
AUTOMOX_MCP_TRANSPORT | No | stdio | Transport: stdio, http, sse, or streamable-http |
AUTOMOX_MCP_HOST | No | 127.0.0.1 | Bind address for HTTP/SSE |
AUTOMOX_MCP_PORT | No | 8000 | Bind port for HTTP/SSE |
AUTOMOX_MCP_API_KEYS | No | — | Comma-separated MCP endpoint API keys for HTTP/SSE Bearer-token auth (e.g., key1,label:key2) |
AUTOMOX_MCP_API_KEY_FILE | No | — | Path to a file containing MCP endpoint API keys (one per line) |
AUTOMOX_MCP_OAUTH_ISSUER | No | — | OIDC issuer URL for JWT auth (e.g., https://auth.example.com/realms/main) |
AUTOMOX_MCP_OAUTH_JWKS_URI | No | — | JWKS endpoint for JWT key rotation (auto-derived from issuer if omitted) |
AUTOMOX_MCP_OAUTH_AUDIENCE | When JWT auth | — | Expected JWT audience claim (prevents token passthrough); **required** when AUTOMOX_MCP_OAUTH_ISSUER is set |
AUTOMOX_MCP_OAUTH_SERVER_URL | No | — | Canonical server URL; enables RFC 9728 Protected Resource Metadata |
AUTOMOX_MCP_OAUTH_SCOPES | No | — | Comma-separated required OAuth scopes |
AUTOMOX_MCP_ALLOWED_ORIGINS | No | — | Extra allowed Origin headers for DNS rebinding protection (comma-separated) |
AUTOMOX_MCP_ALLOWED_HOSTS | No | — | Extra allowed Host headers for DNS rebinding protection (comma-separated) |
AUTOMOX_MCP_DNS_REBINDING_PROTECTION | No | true | Set to false to disable DNS rebinding protection (not recommended) |
AUTOMOX_MCP_ALLOW_REMOTE_BIND | No | false | Allow binding to non-loopback addresses (required for 0.0.0.0 or external IPs) |
When deploying over HTTP or SSE, you can require authentication on the MCP endpoint (separate from the Automox API key). Two strategies are supported:
Static API keys (simple):
automox-mcp --generate-key # generate a key
export AUTOMOX_MCP_API_KEYS="amx_mcp_a1b2c3..." # or use a key file
OAuth 2.1 / JWT (enterprise IdP integration):
export AUTOMOX_MCP_OAUTH_ISSUER="https://auth.example.com/realms/main"
export AUTOMOX_MCP_OAUTH_AUDIENCE="https://mcp.example.com"
export AUTOMOX_MCP_OAUTH_SERVER_URL="https://mcp.example.com" # enables RFC 9728 metadata
Clients must include Authorization: Bearer <token> on every request. Unauthenticated requests receive 401 Unauthorized with proper WWW-Authenticate headers. No effect on stdio transport.
The Quick Start above uses uvx which requires no installation. If you prefer a persistent install:
```bash
该工具提供了MCP服务管理的基本功能,适用于需要MCP服务管理的用户,但功能较为简单,需要进一步扩展和完善。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,Automox MCP开源工具 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | automox-mcp |
| 原始描述 | 开源MCP工具:An MCP server implementation for Automox。⭐6 · Python |
| Topics | mcppython |
| GitHub | https://github.com/AutomoxCommunity/automox-mcp |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-28 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端