WYRE-AI/msp-claude-plugins/msp-claude-plugins/nutanix/nutanix/skills/api-patterns/SKILL.md
Nutanix API Patterns
Nutanix MCP fundamentals: the discovery-driven tool surface (4 discovery tools plus one `<namespace>_execute` tool per v4 API namespace — not per-entity CRUD tools), the listOperations → getOperationSchema → execute workflow, Conduit gateway credential configuration for Prism Central, OData query parameters, the read-only enforcement mode, and namespace availability rules.
- Source repository stars
- 42
- Declared platforms
- 0
- Static risk flags
- 0
- Last source update
- 2026-08-28
- Source checked
- 2026-08-28
Decision brief
What it does: where it fits
Nutanix MCP fundamentals: the discovery-driven tool surface (4 discovery tools plus one `<namespace>_execute` tool per v4 API namespace — not per-entity CRUD tools), the listOperations → getOperationSchema → execute workflow, Conduit gateway credential configuration for Prism Central, OData query parameters, the read-only enforcement mode, and namespace ava…
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/nutanix/nutanix/skills/api-patterns"Inspect the Agent Skill "Nutanix API Patterns" from https://github.com/WYRE-AI/msp-claude-plugins/blob/5005f73ba2f52cd299f58aa6bb79f4e70ae87103/msp-claude-plugins/nutanix/nutanix/skills/api-patterns/SKILL.md at commit 5005f73ba2f52cd299f58aa6bb79f4e70ae87103. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
The canonical workflow
Every Nutanix task follows the same three steps:
listOperations — find the operation. Filter by namespacegetOperationSchema — get the full contract for the chosenexecute — run it, passing the operation id plus - 02
Connection & Authentication
Credentials are configured in the Conduit gateway UI, not on the technician's machine and not via local environment variables. When connecting the Nutanix vendor in Conduit you supply:
Credentials are configured in the Conduit gateway UI, not on the technician's machine and not via local environment variables. When connecting the Nutanix vendor in Conduit you supply:Conduit holds the credential and injects it per request; the MCP server translates it to the upstream Prism Central auth format. Nothing is stored in this repo, on disk, or in model context. See GOVERNANCE.md.The credential's Nutanix RBAC role bounds what every operator can see — a Viewer credential cannot be widened from the client side, and getOperationPermissions tells you which role each operation needs. - 03
Read-only mode
The server runs in read-only mode (READONLYMODE=true): all non-GET operations are blocked server-side before any API call is made. In this deployment (v1) that is not configurable from the client.
Discovery still lists POST/PUT/PATCH/DELETE operations — the indexDo not promise or plan write workflows (create VM, delete snapshot,The server runs in read-only mode (READONLYMODE=true): all non-GET operations are blocked server-side before any API call is made. In this deployment (v1) that is not configurable from the client. - 04
Executor call shape
Every execute tool takes:
Every execute tool takes:List/search operations additionally accept OData query parameters:Pagination pattern: request with limit=100, walk page upward until a page comes back short. Never claim an inventory is complete from page 0 alone. - 05
Namespace availability
Namespaces are registered from artifacts fetched from the connected Prism Central — only namespaces that PC version exposes get an executor tool. A missing execute tool means that service is not deployed or not exposed on the connected PC; it is expected behavior, not an error.…
Namespaces are registered from artifacts fetched from the connected Prism Central — only namespaces that PC version exposes get an executor tool. A missing execute tool means that service is not deployed or not exposed…See REFERENCE.md for the full 20-namespace table and what each namespace covers.
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 42 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- WYRE-AI/msp-claude-plugins
- Skill path
- msp-claude-plugins/nutanix/nutanix/skills/api-patterns/SKILL.md
- Commit
- 5005f73ba2f52cd299f58aa6bb79f4e70ae87103
- License
- Apache-2.0
- Collected
- 2026-08-28
- Default branch
- main
View the original SKILL.md
Nutanix MCP Tools & API Patterns
Overview
The Nutanix integration is backed by Nutanix's official v4 API MCP server (ntnx-api-mcp-server, pinned at v0.8), reached through the WYRE Conduit gateway. It exposes the Prism Central v4 REST APIs — Nutanix's management plane for multi-cluster infrastructure.
The tool surface is not a flat catalog of per-entity CRUD tools. It is:
- 4 discovery tools that query an in-memory index of every available operation (no Nutanix API call is made)
- Up to 20 namespace executor tools, one per v4 API namespace, each
named
<namespace>_execute(e.g.vmm_execute,clustermgmt_execute,networking_execute)
Every real API call goes through an executor tool with an operation id
you found via discovery. If you guess operation ids or invent tool names
like a hypothetical nutanix_list_vms, calls fail — discover first.
The canonical workflow
Every Nutanix task follows the same three steps:
listOperations— find the operation. Filter bynamespace(e.g.vmm) and/orsearchkeyword (e.g.search="list vms"). Supportslimitandoffsetpagination.getOperationSchema— get the full contract for the chosenoperationid: parameters, HTTP method, path, request/response shape. Never call an executor without checking the schema first; required path parameters (usuallyextId) are not guessable.<namespace>_execute— run it, passing theoperationid plus the parameters the schema requires.
Two more discovery tools round out the surface:
getCodeSample— language-specific sample (python,curl, ...) for an operation, useful when handing a runbook to a human.getOperationPermissions— the Nutanix RBAC roles an operation requires. Check this before diagnosing a 403 as a credential problem.
Connection & Authentication
Credentials are configured in the Conduit gateway UI, not on the technician's machine and not via local environment variables. When connecting the Nutanix vendor in Conduit you supply:
| Field | Value |
|---|---|
| Prism Central host | IP or FQDN of the Prism Central instance (port 9440 unless overridden) |
| Username + password | A Prism Central account — one auth method, not both |
| API key | Alternative to username/password; sent upstream as X-ntnx-api-key and takes priority if both are set |
Conduit holds the credential and injects it per request; the MCP server
translates it to the upstream Prism Central auth format. Nothing is
stored in this repo, on disk, or in model context. See GOVERNANCE.md.
The credential's Nutanix RBAC role bounds what every operator can see —
a Viewer credential cannot be widened from the client side, and
getOperationPermissions tells you which role each operation needs.
Read-only mode
The server runs in read-only mode (READ_ONLY_MODE=true): all
non-GET operations are blocked server-side before any API call is made.
In this deployment (v1) that is not configurable from the client.
- Discovery still lists POST/PUT/PATCH/DELETE operations — the index covers the whole API — but executing them returns a structured "blocked by read-only mode" error, not a permissions error.
- Do not promise or plan write workflows (create VM, delete snapshot,
trigger failover, run upgrade). Offer the read-side equivalent:
inventory, health, capacity, and audit queries, plus a
getCodeSamplehandoff so a human can run the write step in their own tooling.
Executor call shape
Every <namespace>_execute tool takes:
| Parameter | Type | Description |
|---|---|---|
operation | string (required) | Operation id from listOperations |
request_body | object | JSON body for POST/PUT/PATCH — irrelevant under read-only mode |
List/search operations additionally accept OData query parameters:
| Parameter | Type | Description |
|---|---|---|
_filter | string | OData $filter expression, e.g. name eq 'my-vm' |
_limit | integer | Max results, 1–100 |
_page | integer | Page offset, 0-based |
_orderby | string | OData $orderby expression |
_select | string | OData $select expression |
_expand | string | OData $expand expression |
Pagination pattern: request with _limit=100, walk _page upward until
a page comes back short. Never claim an inventory is complete from page
0 alone.
Namespace availability
Namespaces are registered from artifacts fetched from the connected
Prism Central — only namespaces that PC version exposes get an executor
tool. A missing <namespace>_execute tool means that service is not
deployed or not exposed on the connected PC; it is expected behavior,
not an error. Confirm what is actually available with
listOperations before promising coverage.
See REFERENCE.md for the full 20-namespace table and what each namespace covers.
Error handling
| Symptom | Meaning | Action |
|---|---|---|
| Read-only block error | Operation is non-GET | Stay read-side; offer getCodeSample instead |
| 401 | Credential invalid/expired | Re-submit the connection in the Conduit gateway UI |
| 403 | Credential lacks the required RBAC role | Check getOperationPermissions; fix the role in Prism Central |
| 404 on operation id | Operation not in the index | Re-run listOperations; the namespace may be absent on this PC |
| Validation error on call | Payload doesn't match the contract; unknown fields are rejected | Re-check getOperationSchema — do not retry blind |
Best Practices
- Filter server-side with
_filterbefore filtering client-side — the v4 APIs are OData-capable and clusters can host thousands of VMs. - Use
_selectto trim large entities when you only need a few fields. - Cache discovery results within a session;
listOperationsandgetOperationSchemaare index lookups, but their output rarely changes mid-session. - Entity identifiers in the v4 APIs are
extIdUUIDs. Resolve human-readable names toextIdvia a list operation with a_filterbefore any get-by-id call.
Related Skills
- vm-management — vmm namespace workflows
- cluster-operations — clustermgmt, lifecycle, prism
- storage — storage, volumes, objects, files
- networking — networking, microseg
- monitoring-aiops — monitoring, aiops
Frequently asked questions
What to verify before installation and use
What does the Nutanix API Patterns source document cover?
Nutanix MCP fundamentals: the discovery-driven tool surface (4 discovery tools plus one `<namespace>_execute` tool per v4 API namespace — not per-entity CRUD tools), the listOperations → getOperationSchema → execute workflow, Conduit gateway credential configuration for Prism Central, OData query parameters, the read-only enforcement mode, and namespace ava…
How do I install Nutanix API Patterns?
The source record exposes this install command: npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/nutanix/nutanix/skills/api-patterns". Inspect the command and pinned source before running it.
Alternatives
Compare before choosing
garrytan/gbrain
bulk-ingestion
End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.
alirezarezvani/claude-skills
app-store-optimization
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
dotnet/skills
migrate-vstest-to-mtp
Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing
oaustegard/claude-skills
featuring
Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre