nutanix-mcp-server
@takanorisuzuki
关于 nutanix-mcp-server
Nutanix Prism Central と連携してクラスタ・仮想マシン情報を取得する MCP (Model Context Protocol) サーバーの FastAPI 実装
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"nutanix-mcp-server-jp": {
"command": "python3",
"args": [
"-m",
"venv",
"venv"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
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.
其他 分类下的更多 MCP 服务器
Servers
modelcontextprotocolModel Context Protocol Servers
🪟 Windows-MCP
CursorTouchMCP Server for Computer Use in Windows
Blender
ahujasidOpen-source MCP to use Blender with any LLM
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
评论