What is the Proxmox VE MCP Server MCP server?
Manage Proxmox VE through AI assistants
How to install Proxmox VE MCP Server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
PVE_BASE_URLrequiredURL of the Proxmox VE instance (e.g. https://pve.example.com:8006)
PVE_TOKEN_IDrequiredsecretProxmox VE API token ID (e.g. user@pam!token-name)
PVE_TOKEN_SECRETrequiredsecretProxmox VE API token secret
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-pve": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-pve"
],
"env": {
"PVE_BASE_URL": "<YOUR_PVE_BASE_URL>",
"PVE_TOKEN_ID": "<YOUR_PVE_TOKEN_ID>",
"PVE_TOKEN_SECRET": "<YOUR_PVE_TOKEN_SECRET>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-pve": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-pve"
],
"env": {
"PVE_BASE_URL": "<YOUR_PVE_BASE_URL>",
"PVE_TOKEN_ID": "<YOUR_PVE_TOKEN_ID>",
"PVE_TOKEN_SECRET": "<YOUR_PVE_TOKEN_SECRET>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-pve": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-pve"
],
"env": {
"PVE_BASE_URL": "<YOUR_PVE_BASE_URL>",
"PVE_TOKEN_ID": "<YOUR_PVE_TOKEN_ID>",
"PVE_TOKEN_SECRET": "<YOUR_PVE_TOKEN_SECRET>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-pve": {
"type": "stdio",
"command": "node",
"args": [
"-y",
"@samik081/mcp-pve"
],
"env": {
"PVE_BASE_URL": "<YOUR_PVE_BASE_URL>",
"PVE_TOKEN_ID": "<YOUR_PVE_TOKEN_ID>",
"PVE_TOKEN_SECRET": "<YOUR_PVE_TOKEN_SECRET>"
}
}
}
}Claude Code
claude mcp add mcp-pve --env PVE_BASE_URL=<YOUR_PVE_BASE_URL> --env PVE_TOKEN_ID=<YOUR_PVE_TOKEN_ID> --env PVE_TOKEN_SECRET=<YOUR_PVE_TOKEN_SECRET> -- node -y @samik081/mcp-pveRelated MCP servers
AdGuard Home MCP Server
Active
Manage AdGuard Home through AI assistants
1
View repository →TypeScript
MIT