vSphere-MCP-Pro

vSphere-MCP-Pro

Enables secure management of VMware vCenter 8.0+ environments through controlled operations including VM lifecycle management, snapshots, and resource discovery with built-in RBAC authorization, audit logging, and rate limiting.

Category
访问服务器

README

vSphere-MCP-Pro

A secure, feature-rich Machine Control Plane (MCP) server for VMware vCenter 8.0+.
This service exposes a controlled set of vCenter operations via MCP tools, including VM lifecycle management, snapshot operations, datastore/host discovery, and more—wrapped with audit logging, RBAC authorization, and rate limiting.


Table of Contents


Overview

vsphere-mcp-pro is an MCP server designed for VMware vCenter 8.0+ environments.
It provides:

  • Safe, structured access to vCenter operations
  • Strict authorization via roles → allowed tools
  • Snapshot + VM lifecycle operations
  • Auditing and rate limiting for secure multi-tenant use
  • Support for both /api (preferred) and /rest vCenter endpoints
  • Optional host allow-listing to prevent accidental cross-cluster operations

The server runs using FastMCP and automatically wraps every tool operation with:

  • Token-based RBAC (Authorizer)
  • Token bucket rate limiting
  • JSONL audit logging
  • Optional confirmation for destructive operations

Key Features

✔ Secure by design

  • SSL verification enabled by default
  • Optional CA bundle support
  • Allowed-host enforcement prevents unauthorized vCenter targets

✔ Strong authorization model

  • Token → role mapping
  • Role → allowed-tools mapping
  • Enforced unless explicitly disabled
  • Destructive operations require confirm=True

✔ Operationally robust

  • Automatic retry logic for vCenter API calls (Retry + HTTPAdapter)
  • Session auto-renewal on 401
  • Extensive logging for auditing and observability

✔ High performance

  • Thread-safe vCenter session management
  • MCP server built with uvicorn

Architecture

Key modules:

  • server.py
    Builds the MCP server, registers all tools, injects authorization, rate-limiting, and auditing wrappers.

  • vsphere_client.py
    Handles retries, authentication, and REST/API mode switching for VMware vCenter.

  • authz.py
    Implements:

    • Token → role resolution
    • Role → tool gating
    • Token bucket rate limiting
  • audit.py
    Writes JSON-lines logs for every operation.

  • config.py
    Loads environment variables into a typed AppConfig using pydantic.


Directory Structure


/
├── vsphere-mcp-pro/        # Python package
│   ├── server.py
│   ├── vsphere_client.py
│   ├── authz.py
│   ├── audit.py
│   ├── config.py
├── pyproject.toml
├── README.md
├── .env.example
├── Dockerfile


Installation

Prerequisites

  • Python 3.10+
  • VMware vCenter 8.0+
  • A valid set of API credentials

Install from source


git clone https://github.com/Warezloder/vSphere-MCP-Pro
cd vsphere-mcp-pro
pip install -e .


Configuration

Configuration is environment-driven. Copy the example file:


cp .env.example .env

Required Environment Variables

Variable Description
VCENTER_HOST vCenter hostname/IP
VCENTER_USER vCenter username
VCENTER_PASSWORD vCenter password
ROLES_TO_TOOLS JSON map of role → allowed tools
TOKENS_TO_ROLES JSON map of token → role
ALLOWED_VCENTER_HOSTS Optional allowlist for multi-host deployments

Example snippet:


VCENTER_HOST=vcenter.example.com
VCENTER_USER=administrator@vsphere.local
VCENTER_PASSWORD=s3cret
TOKENS_TO_ROLES={"token1": "read", "token2": "ops"}
ROLES_TO_TOOLS={"read":["list_vms","get_vm_details"],"ops":["power_on_vm"]}


Running the Server

Local execution


python -m vsphere_mcp_pro.server

Server defaults (override via env vars):

  • Host: 0.0.0.0
  • Port: 8000
  • MCP path: /mcp

Available Tools / API

Below is a categorized summary of available MCP tools exposed by the server.

VM Discovery

  • list_vms
  • get_vm_details

Inventory Discovery

  • list_hosts
  • list_datastores
  • list_networks
  • list_datacenters
  • get_datastore_usage
  • get_resource_utilization_summary

Power Operations

  • power_on_vm
  • power_off_vm
  • restart_vm

Snapshot Operations

  • list_vm_snapshots
  • create_vm_snapshot
  • delete_vm_snapshot

VM Resource Management

  • modify_vm_resources (CPU / memory)

Destructive Operations (require confirm=True)

  • delete_vm
  • delete_vm_snapshot

Audit Logging

Every MCP tool call is logged as a JSON line containing:

  • tool name
  • execution status
  • duration (ms)
  • sanitized arguments (passwords & tokens masked)
  • optional error message
  • role + host context

Logs either write to stdout or to the configured AUDIT_LOG_PATH.


Rate Limiting

Uses a token-bucket strategy:

  • Configurable RATE_LIMIT_RPS and RATE_LIMIT_BURST
  • Separate buckets per token
  • Disabled by setting RATE_LIMIT=false

Security Model

Mechanism Purpose
SSL verification Prevent MITM attacks
Allowed-host list Prevent unauthorized target selection
Role → tool mapping Enforce least-privilege principle
Token authentication Multi-tenant safe access
Required confirmations Prevent accidental destructive operations
Rate limiting Protects vCenter and MCP server

Development

Install dev deps


pip install -e .[dev]

Run with autoreload


uvicorn vsphere_mcp_pro.server:main --reload


Docker Usage

Build


docker build -t vsphere-mcp-pro .

Run


docker run \
  --rm \
  -p 8000:8000 \
  --env-file .env \
  vsphere-mcp-pro
  

Troubleshooting

"login failed: HTTP 401"

  • Verify vCenter username/password
  • Ensure correct API mode (VSPHERE_API_MODE=api|rest)

"Hostname not in allowed set"

  • Add the hostname to ALLOWED_VCENTER_HOSTS

Rate limit errors

  • Increase RATE_LIMIT_BURST
  • Adjust per-token usage

SSL certificate issues

  • Set VCENTER_CA_BUNDLE or
  • Disable SSL verification only if absolutely necessary: INSECURE=true

License

This project is licensed under your chosen repository license.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选