Nutanix · Capability

Nutanix Prism Central API v3 — Projects

Nutanix Prism Central API v3 — Projects. 2 operations. Lead operation: Nutanix List projects. Self-contained Naftiko capability covering one Nutanix business surface.

Run with Naftiko NutanixProjects

What You Can Do

POST
Listprojects — Nutanix List projects
/v1/projects/list
GET
Getproject — Nutanix Get a project
/v1/projects/{uuid}

MCP Tools

nutanix-list-projects

Nutanix List projects

read-only
nutanix-get-project

Nutanix Get a project

read-only idempotent

Capability Spec

prism-central-v3-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nutanix Prism Central API v3 — Projects
  description: 'Nutanix Prism Central API v3 — Projects. 2 operations. Lead operation: Nutanix List projects. Self-contained
    Naftiko capability covering one Nutanix business surface.'
  tags:
  - Nutanix
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NUTANIX_API_KEY: NUTANIX_API_KEY
capability:
  consumes:
  - type: http
    namespace: prism-central-v3-projects
    baseUri: https://{prismCentralIp}:9440/api/nutanix/v3
    description: Nutanix Prism Central API v3 — Projects business capability. Self-contained, no shared references.
    resources:
    - name: projects-list
      path: /projects/list
      operations:
      - name: listprojects
        method: POST
        description: Nutanix List projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: projects-uuid
      path: /projects/{uuid}
      operations:
      - name: getproject
        method: GET
        description: Nutanix Get a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.NUTANIX_USER}}'
      password: '{{env.NUTANIX_PASS}}'
  exposes:
  - type: rest
    namespace: prism-central-v3-projects-rest
    port: 8080
    description: REST adapter for Nutanix Prism Central API v3 — Projects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects/list
      name: projects-list
      description: REST surface for projects-list.
      operations:
      - method: POST
        name: listprojects
        description: Nutanix List projects
        call: prism-central-v3-projects.listprojects
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{uuid}
      name: projects-uuid
      description: REST surface for projects-uuid.
      operations:
      - method: GET
        name: getproject
        description: Nutanix Get a project
        call: prism-central-v3-projects.getproject
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: prism-central-v3-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Nutanix Prism Central API v3 — Projects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: nutanix-list-projects
      description: Nutanix List projects
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: prism-central-v3-projects.listprojects
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: nutanix-get-project
      description: Nutanix Get a project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: prism-central-v3-projects.getproject
      outputParameters:
      - type: object
        mapping: $.