nutanix-mcp-server
@takanorisuzuki
About nutanix-mcp-server
Nutanix Prism Central と連携してクラスタ・仮想マシン情報を取得する MCP (Model Context Protocol) サーバーの FastAPI 実装
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"nutanix-mcp-server-jp": {
"command": "python3",
"args": [
"-m",
"venv",
"venv"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is nutanix-mcp-server?
A FastAPI implementation of a Model Context Protocol (MCP) server that integrates with Nutanix Prism Central to retrieve cluster and virtual machine information. It is an MVP prototype and not intended for production use.
How to use nutanix-mcp-server?
Clone the repository, create a Python virtual environment (3.12+), install dependencies, copy .env.example to .env, and configure Prism Central credentials. Start the server with uvicorn app:app --reload. Access endpoints /clusters and /vms via HTTP. For Dify integration, import the provided dify-openapi-schema.json as a custom tool.
Key features of nutanix-mcp-server
- Fetches cluster UUID, name, and node configuration.
- Retrieves VM names, vCPU, and memory details.
- Exposes REST API via FastAPI with Swagger UI.
- Supports Dify integration through OpenAPI schema.
- Credentials and connection settings externalized via
.env. - SSL verification disabled by default for self-signed certificates.
Use cases of nutanix-mcp-server
- Query Nutanix cluster information using natural language via Dify agent.
- Retrieve VM inventory from Prism Central without manual API calls.
- Integrate into automation workflows that require cluster or VM metadata.
- Prototype and test MCP server interactions before production deployment.
FAQ from nutanix-mcp-server
What are the runtime dependencies?
Requires Python 3.12+, pip 23.x+, and access to Nutanix Prism Central APIs v4.0.2 (clusters) and v4.0 (VMs).
How is SSL verification handled?
Currently SSL verification is disabled (verify=False) to support self-signed certificates. Set VERIFY_SSL="false" in .env; production environments should enable proper verification.
Can this server be used in production?
No. This is an MVP prototype intended for evaluation and development, not for production use. Future enhancements for security and reliability are planned.
How do I integrate nutanix-mcp-server with Dify?
Use the provided dify-openapi-schema.json file to create a custom tool in Dify. Then assign the tool to an agent, and ask questions like “Show me cluster information” in natural language.
Which API endpoints are available?
Two endpoints: /clusters returns basic cluster information; /vms returns basic VM information (name, vCPU, memory). Both are accessible via Swagger UI at /docs.
More Other MCP servers
Codelf
unbugA search tool helps dev to solve the naming things problem.
Awesome Mlops
visengerA curated list of references for MLOps
ICSS
chokcoco不止于 CSS
Production-ready MCP integrations for AI applications
Klavis-AIKlavis AI: MCP integration platforms that let AI agents use tools reliably at any scale
Awesome Mcp Servers
punkpeyeA collection of MCP servers.
Comments