Cursor Proxmox MCP for VS Code
io.github.hackmods/cursor-proxmox-mcp
Manage Proxmox VE via Cursor: QEMU, LXC, storage, HA, firewall, access.
client:VS Code
transport:stdio
runtime:pypi
Install Cursor Proxmox MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "proxmox-mcp-config",
"description": "PROXMOX_MCP_CONFIG",
"password": true
},
{
"type": "promptString",
"id": "proxmox-token-value",
"description": "PROXMOX_TOKEN_VALUE",
"password": true
},
{
"type": "promptString",
"id": "proxmox-mcp-verbose",
"description": "PROXMOX_MCP_VERBOSE",
"password": true
},
{
"type": "promptString",
"id": "proxmox-mcp-log-level",
"description": "PROXMOX_MCP_LOG_LEVEL",
"password": true
}
],
"servers": {
"cursor-proxmox-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"cursor-proxmox-mcp"
],
"env": {
"PROXMOX_MCP_CONFIG": "${input:proxmox-mcp-config}",
"PROXMOX_TOKEN_VALUE": "${input:proxmox-token-value}",
"PROXMOX_MCP_VERBOSE": "${input:proxmox-mcp-verbose}",
"PROXMOX_MCP_LOG_LEVEL": "${input:proxmox-mcp-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs