Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

proxmox-mcp-toolsproxmox MCP tools 搜索

Agent Skill

proxmox-mcp-tools 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,035

周安装

44

GitHub Stars

2

下载量

363
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:proxmox-mcp-tools(proxmox MCP tools 搜索)
来源仓库:https://github.com/bldg-7/proxmox-mcp
仓库路径:skills/proxmox-mcp-tools
安装命令:
npx skills add https://github.com/bldg-7/proxmox-mcp --skill proxmox-mcp-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/bldg-7/proxmox-mcp --skill proxmox-mcp-tools

简介

用于查找、检索和筛选相关信息,支持关键词快速定位候选结果。

  • 适用于需要根据任务场景或来源线索在 Codex、Claude 等平台中获取信息时。
  • 可通过 GitHub 仓库路径和 README 进一步核验具体用法和功能范围。
  • 安装方式:通过 npx 从 bldg-7/proxmox-mcp 仓库添加技能。
  • 注意:使用前请确认权限范围、维护状态及是否触发联网或命令执行操作。

SKILL.md

Proxmox MCP Tools Reference

AI Agent Skill: Complete reference for 92 Proxmox Virtual Environment management tools via Model Context Protocol

Overview

This skill teaches AI agents how to use the @bldg-7/proxmox-mcp server, which provides 92 comprehensive tools for managing Proxmox VE infrastructure through the Model Context Protocol (MCP).

What you'll learn:

  • How to connect to Proxmox VE via MCP
  • 92 tools organized into 14 functional domains
  • Permission model (basic vs elevated operations)
  • Common workflows and patterns
  • Troubleshooting API quirks

Target audience: AI agents managing Proxmox infrastructure, automating VM/LXC provisioning, monitoring cluster health, or performing operational tasks.


Quick Start

Connection Setup

Required Environment Variables:

PROXMOX_HOST=pve.example.com
PROXMOX_TOKEN_NAME=mytoken
PROXMOX_TOKEN_VALUE=abc123-def456-ghi789

Optional Configuration:

PROXMOX_USER=root@pam          # Default: root@pam
PROXMOX_SSL_MODE=verify         # strict|verify|insecure (default: strict)
PROXMOX_ALLOW_ELEVATED=true     # Enable create/modify/delete (default: false)
PROXMOX_PORT=8006               # Default: 8006

SSH Configuration (for proxmox_lxc_exec):

PROXMOX_SSH_ENABLED=true        # Enable SSH-based LXC exec (default: false)
PROXMOX_SSH_HOST=pve.example.com # SSH host (falls back to PROXMOX_HOST)
PROXMOX_SSH_PORT=22             # SSH port (default: 22)
PROXMOX_SSH_USER=root           # SSH username (default: root)
PROXMOX_SSH_KEY_PATH=~/.ssh/id_rsa # Path to SSH private key (required when SSH enabled)
PROXMOX_SSH_NODE=pve1           # Proxmox node name (required when SSH enabled)
PROXMOX_SSH_HOST_KEY_FINGERPRINT=sha256:... # Optional host key verification

Permission Model

LevelOperationsEnv Var Required
BasicRead-only (list, get, status)None
Elevated 🔒Create, modify, deletePROXMOX_ALLOW_ELEVATED=true

102 basic tools + 207 elevated tools = 92 total

SSL Modes

  • strict: Full certificate verification (production)
  • verify: Allow self-signed certificates (common for Proxmox)
  • insecure: No verification (development only)

Tool Categories

DomainToolsKey OperationsReference
Nodes47Node status, network config, system ops, console accessproxmox-nodes.md
QEMU VMs26VM lifecycle, config, disks, network, commandsproxmox-vm.md
LXC Containers20Container lifecycle, config, mount points, network, execproxmox-lxc.md
VM/LXC Shared22Agent, firewall, migration (works for both)proxmox-vm-lxc-shared.md
Snapshots & Backups14Create/restore snapshots, backup jobsproxmox-snapshots-backups.md
Storage16Storage config, content, file operations, node disksproxmox-storage.md
Networking20SDN (VNets, zones, controllers, subnets)proxmox-networking.md
Cluster54HA, firewall, aliases, ipsets, backup jobs, replication, configproxmox-cluster.md
Access Control25Users, groups, roles, ACLs, domains, API tokensproxmox-access-control.md
Ceph16Ceph OSDs, MONs, MDS, pools, filesystemsproxmox-ceph.md
Pools5Resource pool managementproxmox-pools.md
Certificates7Node certificates, custom SSL, ACME orderingproxmox-certificates.md
ACME8ACME accounts, plugins, directoriesproxmox-acme.md
Notifications5Notification targets, SMTP/Gotify testingproxmox-notifications.md

Total: 92 tools


Common Workflows

1. Create and Configure a VM

1. proxmox_get_next_vmid → Get available VM ID
2. proxmox_create_vm → Create VM with basic config
3. proxmox_vm_disk → Attach storage
4. proxmox_guest_network → Configure network
5. proxmox_guest_start → Power on
6. proxmox_guest_status → Verify running

2. Clone VM for Testing

1. proxmox_guest_config → Review source VM
2. proxmox_guest_snapshot → Snapshot before clone
3. proxmox_guest_clone → Create clone (full or linked)
4. proxmox_guest_start → Start cloned VM

3. Backup and Restore

# Backup
1. proxmox_backup → Create backup to storage
2. proxmox_backup → Verify backup exists

# Restore
1. proxmox_backup → Find backup file
2. proxmox_backup → Restore to new/existing VM

4. Migrate VM Between Nodes

1. proxmox_node → List available target nodes
2. proxmox_guest_status → Check VM is running
3. proxmox_guest_migrate → Live or offline migration
4. proxmox_guest_status → Verify on new node

5. Configure HA for Critical VMs

1. proxmox_ha_group → Define node group
2. proxmox_ha_resource → Add VM to HA
3. proxmox_ha_resource → Monitor HA state

6. Monitor Cluster Health

1. proxmox_cluster → Overall cluster state
2. proxmox_node → Node-level health
3. proxmox_node_task → Recent operations
4. proxmox_ceph → Ceph cluster (if used)

7. Manage Storage

1. proxmox_storage_config → Available storage
2. proxmox_storage_content → Browse content
3. proxmox_storage_content → Upload ISO/template
4. proxmox_storage_content → Clean old backups

More workflows: See proxmox-workflows.md


Troubleshooting Quick Reference

1. Connection Refused

Symptom: ECONNREFUSED or timeout Fix: Verify PROXMOX_HOST, check port 8006, firewall rules

2. Authentication Failed

Symptom: 401 Unauthorized Fix: Verify token name/value, ensure token has permissions in Proxmox

3. SSL Certificate Errors

Symptom: UNABLE_TO_VERIFY_LEAF_SIGNATURE Fix: Use PROXMOX_SSL_MODE=verify for self-signed certs

4. Permission Denied

Symptom: 🚫 Permission Denied Fix: Set PROXMOX_ALLOW_ELEVATED=true for create/modify/delete operations

5. VM Not Found (500 instead of 404)

Symptom: API returns 500 error for missing VM Fix: This is a Proxmox API quirk - treat 500 as "not found" in some contexts

More troubleshooting: See proxmox-troubleshooting.md


Tool Response Format

All tools return structured MCP responses:

Success:

{
  "content": [{"type": "text", "text": "✅ Operation successful\n\n• Details..."}],
  "isError": false
}

Error:

{
  "content": [{"type": "text", "text": "❌ Error: Reason..."}],
  "isError": true
}

Permission Denied:

{
  "content": [{"type": "text", "text": "🚫 Permission Denied: Set PROXMOX_ALLOW_ELEVATED=true"}],
  "isError": true
}

References

Domain-Specific Documentation

Operational Guides


Usage Tips

  1. Always check permissions: Use basic tools first, only enable elevated when needed
  2. Verify before destructive ops: Use get_vm_status before delete_vm
  3. Use snapshots: Create snapshot before major changes
  4. Monitor tasks: Use get_node_tasks to track long-running operations
  5. Handle 500 errors: Proxmox sometimes returns 500 instead of 404 - check context
  6. SSL mode for self-signed: Most Proxmox installations use self-signed certs - use verify mode

License

MIT License - Part of @bldg-7/proxmox-mcp package

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.58%
按下载量换算126

Claude

30.75%
按下载量换算112

Cursor

19.77%
按下载量换算72

Gemini CLI

8.97%
按下载量换算33

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills