vsphere-mcp-server
MCP server for VMware vSphere infrastructure management, enabling VM operations, monitoring, and network discovery.
README
vSphere MCP Server
MCP server for VMware vSphere infrastructure management. Provides comprehensive access to vSphere environments through the Model Context Protocol.
Features
- Seamless Authentication: Domain-based credential caching with GUI prompts
- VM Management: List, inspect, and control virtual machines
- Infrastructure Monitoring: Monitor hosts, datacenters, and datastores
- Network Discovery: Explore networks and extract VLAN information
- Organization Tools: Navigate folders and organizational structures
- Secure Credential Storage: macOS Keychain integration with TTL
Installation
From PyPI (Recommended)
pip install vsphere-mcp-server
From Source
# Clone the repository
git clone https://github.com/rorymcmahon/vsphere-mcp-server.git
cd vsphere-mcp-server
# Install dependencies
pip install -r requirements.txt
# Install in development mode
pip install -e .
Configuration
Add to your MCP client configuration:
{
"mcpServers": {
"vsphere": {
"command": "python",
"args": ["-m", "vsphere_mcp_server.server"]
}
}
}
Available Tools
Authentication
vsphere_clear_credentials(hostname)- Clear cached credentials for domain
Virtual Machine Management
list_vms(hostname)- List all VMs with basic infoget_vm_details(hostname, vm_id)- Detailed VM configurationpower_on_vm(hostname, vm_id)- Power on VMpower_off_vm(hostname, vm_id)- Power off VM
Infrastructure Management
list_hosts(hostname)- List ESXi hostsget_host_details(hostname, host_id)- Host detailslist_datacenters(hostname)- List datacentersget_datacenter_details(hostname, datacenter_id)- Datacenter detailslist_datastores(hostname)- List datastores with capacityget_datastore_details(hostname, datastore_id)- Datastore details
Organization
list_folders(hostname, folder_type)- List folders by typeget_folder_details(hostname, folder_id)- Folder details
Networking
list_networks(hostname)- List networks with VLAN infoget_network_details(hostname, network_id)- Network detailslist_vlans(hostname)- Extract VLAN info from network names
Usage Examples
Basic VM Operations
# List all virtual machines
list_vms("vcenter.domain.local")
# Get detailed VM information
get_vm_details("vcenter.domain.local", "vm-123")
# Power operations
power_on_vm("vcenter.domain.local", "vm-123")
power_off_vm("vcenter.domain.local", "vm-123")
Infrastructure Monitoring
# Check datastore capacity
list_datastores("vcenter.domain.local")
# Monitor host status
list_hosts("vcenter.domain.local")
get_host_details("vcenter.domain.local", "host-456")
Network Discovery
# Explore network configuration
list_networks("vcenter.domain.local")
# Extract VLAN information
list_vlans("vcenter.domain.local")
Credential Management
# Clear stored credentials if needed
vsphere_clear_credentials("vcenter.domain.local")
Authentication
The server uses domain-based credential caching:
- First Use: GUI prompts for username and password
- Credential Storage: Stored in macOS Keychain with 4-hour TTL
- Automatic Renewal: Re-prompts when credentials expire
- Domain Extraction:
vcenter.domain.local→domain.local
Supported Username Formats
username@domain.localdomain\username(converted to @ format)username(domain auto-appended)
Security
- Credentials stored securely in macOS Keychain
- 4-hour TTL prevents stale credential usage
- SSL verification disabled by default (common in enterprise environments)
- Session tokens used for API authentication
- Automatic session cleanup on exit
Error Handling
The server provides clear error messages with troubleshooting steps:
- Authentication Errors: Suggests clearing credentials
- Connection Errors: Indicates network/hostname issues
- API Errors: Shows specific vSphere API responses
Development
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Format code
black src/ tests/
isort src/ tests/
# Type checking
mypy src/
Troubleshooting
Authentication Issues
- Clear credentials:
vsphere_clear_credentials("hostname") - Verify username format includes domain
- Check network connectivity to vCenter
Connection Issues
- Verify hostname is reachable
- Check vCenter is running and accessible
- Confirm SSL/TLS configuration
Permission Issues
- Verify user has required vSphere permissions
- Check role assignments in vCenter
- Ensure user can access required objects
License
MIT License - see LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.