Source profileQuality 92/100

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…

Best for

    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

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    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.

    Source-detected install commandSource
    npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/nutanix/nutanix/skills/api-patterns"
    Safe inspection promptEditorial

    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

    1. 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
    2. 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.
    3. 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.
    4. 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.
    5. 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

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score92/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars42SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated 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:

    1. listOperations — find the operation. Filter by namespace (e.g. vmm) and/or search keyword (e.g. search="list vms"). Supports limit and offset pagination.
    2. getOperationSchema — get the full contract for the chosen operation id: parameters, HTTP method, path, request/response shape. Never call an executor without checking the schema first; required path parameters (usually extId) are not guessable.
    3. <namespace>_execute — run it, passing the operation id 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:

    FieldValue
    Prism Central hostIP or FQDN of the Prism Central instance (port 9440 unless overridden)
    Username + passwordA Prism Central account — one auth method, not both
    API keyAlternative 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 getCodeSample handoff so a human can run the write step in their own tooling.

    Executor call shape

    Every <namespace>_execute tool takes:

    ParameterTypeDescription
    operationstring (required)Operation id from listOperations
    request_bodyobjectJSON body for POST/PUT/PATCH — irrelevant under read-only mode

    List/search operations additionally accept OData query parameters:

    ParameterTypeDescription
    _filterstringOData $filter expression, e.g. name eq 'my-vm'
    _limitintegerMax results, 1–100
    _pageintegerPage offset, 0-based
    _orderbystringOData $orderby expression
    _selectstringOData $select expression
    _expandstringOData $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

    SymptomMeaningAction
    Read-only block errorOperation is non-GETStay read-side; offer getCodeSample instead
    401Credential invalid/expiredRe-submit the connection in the Conduit gateway UI
    403Credential lacks the required RBAC roleCheck getOperationPermissions; fix the role in Prism Central
    404 on operation idOperation not in the indexRe-run listOperations; the namespace may be absent on this PC
    Validation error on callPayload doesn't match the contract; unknown fields are rejectedRe-check getOperationSchema — do not retry blind

    Best Practices

    • Filter server-side with _filter before filtering client-side — the v4 APIs are OData-capable and clusters can host thousands of VMs.
    • Use _select to trim large entities when you only need a few fields.
    • Cache discovery results within a session; listOperations and getOperationSchema are index lookups, but their output rarely changes mid-session.
    • Entity identifiers in the v4 APIs are extId UUIDs. Resolve human-readable names to extId via a list operation with a _filter before any get-by-id call.

    Related Skills

    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

    Computed 10029,236

    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.

    Computed 10025,136

    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

    Computed 1005,277

    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

    Computed 100147

    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