proxmox-mcp-server
Repository for the Proxmox MCP Server project, enabling Windsurf to perform all functions accessible via the Proxmox API.
Overview
Proxmox MCP Server is a repository project that enables Windsurf to perform all functions accessible via the Proxmox API.
To use Proxmox MCP Server, clone the repository from GitHub and follow the setup instructions provided in the documentation to connect to the Proxmox API.
- Access to all Proxmox API functions - Integration with Windsurf for enhanced functionality - Open-source repository for community contributions
- Automating server management tasks using Proxmox API.
- Integrating Proxmox functionalities into custom applications.
- Enhancing cloud infrastructure management with Proxmox.
Add to your AI client
Use these steps to connect proxmox-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"proxmox-mcp-server-aphilips": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-proxmox-mcp-server-aphilips"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"proxmox-mcp-server-aphilips": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-proxmox-mcp-server-aphilips"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"proxmox-mcp-server-aphilips": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-proxmox-mcp-server-aphilips"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"proxmox-mcp-server-aphilips": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-proxmox-mcp-server-aphilips"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"proxmox-mcp-server-aphilips": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-proxmox-mcp-server-aphilips"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"proxmox-mcp-server-aphilips": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-proxmox-mcp-server-aphilips"
]
}
}
}FAQ
What is the Proxmox API?
The Proxmox API allows users to manage and automate tasks in Proxmox environments programmatically.
Is Proxmox MCP Server free to use?
Yes! Proxmox MCP Server is open-source and free for everyone to use.
How can I contribute to the Proxmox MCP Server project?
You can contribute by submitting issues, feature requests, or pull requests on the GitHub repository.