proxmox-mcp
proxmox-mcp
MCP 및 OpenAPI를 통해 Proxmox VE VM 제어
목차
Related MCP server: ProxmoxEmCP
설치
pip install proxmox-mcp사용법
from proxmox_mcp import ProxmoxMCP
# initialize client
client = ProxmoxMCP(
host="proxmox.example.com",
user="root@pam",
password="your_password"
)
# list all vms
vms = client.list_vms()
for vm in vms:
print(f"{vm.vmid}: {vm.name} - {vm.status}")
# start a vm
client.start_vm(vmid=100)
# get vm status
status = client.get_vm_status(vmid=100)
print(f"VM 100 is {status}")
# create snapshot
client.create_snapshot(vmid=100, snapname="backup-2024")
# clone vm
client.clone_vm(vmid=100, newid=101, name="clone-vm")API
메서드 | 설명 | 매개변수 |
| 모든 노드의 모든 VM 가져오기 | 없음 |
| 현재 VM 상태 가져오기 |
|
| VM 시작 |
|
| VM 중지 |
|
| VM 재시작 |
|
| 정상 종료 |
|
| VM 스냅샷 생성 |
|
| VM 스냅샷 삭제 |
|
| VM 복제 |
|
| VM 구성 가져오기 |
|
| VM 설정 업데이트 |
|
MCP 통합
이 라이브러리는 Model Context Protocol을 통해 Proxmox 작업을 노출하여 AI 어시스턴트가 VM을 직접 관리할 수 있도록 합니다.
# mcp server mode
from proxmox_mcp.server import run_mcp_server
run_mcp_server(
host="proxmox.example.com",
user="root@pam",
password="your_password",
port=8080
)OpenAPI 스키마
서버 모드로 실행 시 /openapi.json에서 OpenAPI 3.0 사양을 사용할 수 있습니다. Postman과 같은 도구로 가져오거나 다른 언어로 클라이언트를 생성하세요.
기여
PR을 환영합니다. 큰 변경 사항은 먼저 이슈를 열어주세요.
라이선스
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceEnables AI assistants and MCP clients to manage Proxmox VE infrastructure, including virtual machines, containers, storage, networking, and high availability through a standardized interface.100150Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Proxmox VE infrastructure, including VMs, containers, storage, and cluster operations via natural language.MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to monitor and manage Proxmox VE infrastructure, including nodes, VMs, containers, storage, backups, and networking, via natural language.1MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI assistants to monitor and analyze Proxmox VE virtualization environments via the MCP protocol.MIT
Related MCP Connectors
Provision and manage a VPS for AI agents over MCP: register, order, get root, control the server.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jmerelnyc/proxmox-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server