Pure Storage · Capability

FlashArray REST API — File Systems

FlashArray REST API — File Systems. 4 operations. Lead operation: Pure Storage List File Systems. Self-contained Naftiko capability covering one Pure Storage business surface.

Run with Naftiko Pure StorageFile Systems

What You Can Do

GET
Get — Pure Storage List File Systems
/v1/api/2-52/file-systems
POST
Post — Pure Storage Create File System
/v1/api/2-52/file-systems
DELETE
Delete — Pure Storage Delete File System
/v1/api/2-52/file-systems
PATCH
Patch — Pure Storage Modify a File System
/v1/api/2-52/file-systems

MCP Tools

pure-storage-list-file-systems

Pure Storage List File Systems

read-only idempotent
pure-storage-create-file-system

Pure Storage Create File System

pure-storage-delete-file-system

Pure Storage Delete File System

idempotent
pure-storage-modify-file-system

Pure Storage Modify a File System

idempotent

Capability Spec

flasharray-rest-file-systems.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FlashArray REST API — File Systems
  description: 'FlashArray REST API — File Systems. 4 operations. Lead operation: Pure Storage List File Systems. Self-contained
    Naftiko capability covering one Pure Storage business surface.'
  tags:
  - Pure Storage
  - File Systems
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PURE_STORAGE_API_KEY: PURE_STORAGE_API_KEY
capability:
  consumes:
  - type: http
    namespace: flasharray-rest-file-systems
    baseUri: ''
    description: FlashArray REST API — File Systems business capability. Self-contained, no shared references.
    resources:
    - name: api-2.52-file-systems
      path: /api/2.52/file-systems
      operations:
      - name: get
        method: GET
        description: Pure Storage List File Systems
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: Pure Storage Create File System
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: delete
        method: DELETE
        description: Pure Storage Delete File System
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: patch
        method: PATCH
        description: Pure Storage Modify a File System
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: flasharray-rest-file-systems-rest
    port: 8080
    description: REST adapter for FlashArray REST API — File Systems. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/2-52/file-systems
      name: api-2-52-file-systems
      description: REST surface for api-2.52-file-systems.
      operations:
      - method: GET
        name: get
        description: Pure Storage List File Systems
        call: flasharray-rest-file-systems.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Pure Storage Create File System
        call: flasharray-rest-file-systems.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: Pure Storage Delete File System
        call: flasharray-rest-file-systems.delete
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patch
        description: Pure Storage Modify a File System
        call: flasharray-rest-file-systems.patch
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: flasharray-rest-file-systems-mcp
    port: 9090
    transport: http
    description: MCP adapter for FlashArray REST API — File Systems. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: pure-storage-list-file-systems
      description: Pure Storage List File Systems
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: flasharray-rest-file-systems.get
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-create-file-system
      description: Pure Storage Create File System
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: flasharray-rest-file-systems.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-delete-file-system
      description: Pure Storage Delete File System
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: flasharray-rest-file-systems.delete
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-modify-file-system
      description: Pure Storage Modify a File System
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: flasharray-rest-file-systems.patch
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.