InfluxDB · Capability

Complete InfluxDB Cloud API — Cells

Complete InfluxDB Cloud API — Cells. 6 operations. Lead operation: Create a dashboard cell. Self-contained Naftiko capability covering one Influxdb business surface.

Run with Naftiko InfluxdbCells

What You Can Do

POST
Postdashboardsidcells — Create a dashboard cell
/v1/api/v2/dashboards/{dashboardid}/cells
PUT
Putdashboardsidcells — Replace cells in a dashboard
/v1/api/v2/dashboards/{dashboardid}/cells
DELETE
Deletedashboardsidcellsid — Delete a dashboard cell
/v1/api/v2/dashboards/{dashboardid}/cells/{cellid}
PATCH
Patchdashboardsidcellsid — Update the non-positional information related to a cell
/v1/api/v2/dashboards/{dashboardid}/cells/{cellid}
GET
Getdashboardsidcellsidview — Retrieve the view for a cell
/v1/api/v2/dashboards/{dashboardid}/cells/{cellid}/view
PATCH
Patchdashboardsidcellsidview — Update the view for a cell
/v1/api/v2/dashboards/{dashboardid}/cells/{cellid}/view

MCP Tools

create-dashboard-cell

Create a dashboard cell

replace-cells-dashboard

Replace cells in a dashboard

idempotent
delete-dashboard-cell

Delete a dashboard cell

idempotent
update-non-positional-information-related

Update the non-positional information related to a cell

idempotent
retrieve-view-cell

Retrieve the view for a cell

read-only idempotent
update-view-cell

Update the view for a cell

idempotent

Capability Spec

influxdb-cells.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Complete InfluxDB Cloud API — Cells
  description: 'Complete InfluxDB Cloud API — Cells. 6 operations. Lead operation: Create a dashboard cell. Self-contained
    Naftiko capability covering one Influxdb business surface.'
  tags:
  - Influxdb
  - Cells
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INFLUXDB_API_KEY: INFLUXDB_API_KEY
capability:
  consumes:
  - type: http
    namespace: influxdb-cells
    baseUri: ''
    description: Complete InfluxDB Cloud API — Cells business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-dashboards-dashboardID-cells
      path: /api/v2/dashboards/{dashboardID}/cells
      operations:
      - name: postdashboardsidcells
        method: POST
        description: Create a dashboard cell
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: dashboardID
          in: path
          type: string
          description: The ID of the dashboard to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: putdashboardsidcells
        method: PUT
        description: Replace cells in a dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: dashboardID
          in: path
          type: string
          description: The ID of the dashboard to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v2-dashboards-dashboardID-cells-cellID
      path: /api/v2/dashboards/{dashboardID}/cells/{cellID}
      operations:
      - name: deletedashboardsidcellsid
        method: DELETE
        description: Delete a dashboard cell
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: dashboardID
          in: path
          type: string
          description: The ID of the dashboard to delete.
          required: true
        - name: cellID
          in: path
          type: string
          description: The ID of the cell to delete.
          required: true
      - name: patchdashboardsidcellsid
        method: PATCH
        description: Update the non-positional information related to a cell
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: dashboardID
          in: path
          type: string
          description: The ID of the dashboard to update.
          required: true
        - name: cellID
          in: path
          type: string
          description: The ID of the cell to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v2-dashboards-dashboardID-cells-cellID-view
      path: /api/v2/dashboards/{dashboardID}/cells/{cellID}/view
      operations:
      - name: getdashboardsidcellsidview
        method: GET
        description: Retrieve the view for a cell
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: dashboardID
          in: path
          type: string
          description: The dashboard ID.
          required: true
        - name: cellID
          in: path
          type: string
          description: The cell ID.
          required: true
      - name: patchdashboardsidcellsidview
        method: PATCH
        description: Update the view for a cell
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: dashboardID
          in: path
          type: string
          description: The ID of the dashboard to update.
          required: true
        - name: cellID
          in: path
          type: string
          description: The ID of the cell to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.INFLUXDB_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: influxdb-cells-rest
    port: 8080
    description: REST adapter for Complete InfluxDB Cloud API — Cells. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v2/dashboards/{dashboardid}/cells
      name: api-v2-dashboards-dashboardid-cells
      description: REST surface for api-v2-dashboards-dashboardID-cells.
      operations:
      - method: POST
        name: postdashboardsidcells
        description: Create a dashboard cell
        call: influxdb-cells.postdashboardsidcells
        with:
          dashboardID: rest.dashboardID
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putdashboardsidcells
        description: Replace cells in a dashboard
        call: influxdb-cells.putdashboardsidcells
        with:
          dashboardID: rest.dashboardID
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/dashboards/{dashboardid}/cells/{cellid}
      name: api-v2-dashboards-dashboardid-cells-cellid
      description: REST surface for api-v2-dashboards-dashboardID-cells-cellID.
      operations:
      - method: DELETE
        name: deletedashboardsidcellsid
        description: Delete a dashboard cell
        call: influxdb-cells.deletedashboardsidcellsid
        with:
          dashboardID: rest.dashboardID
          cellID: rest.cellID
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchdashboardsidcellsid
        description: Update the non-positional information related to a cell
        call: influxdb-cells.patchdashboardsidcellsid
        with:
          dashboardID: rest.dashboardID
          cellID: rest.cellID
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/dashboards/{dashboardid}/cells/{cellid}/view
      name: api-v2-dashboards-dashboardid-cells-cellid-view
      description: REST surface for api-v2-dashboards-dashboardID-cells-cellID-view.
      operations:
      - method: GET
        name: getdashboardsidcellsidview
        description: Retrieve the view for a cell
        call: influxdb-cells.getdashboardsidcellsidview
        with:
          dashboardID: rest.dashboardID
          cellID: rest.cellID
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchdashboardsidcellsidview
        description: Update the view for a cell
        call: influxdb-cells.patchdashboardsidcellsidview
        with:
          dashboardID: rest.dashboardID
          cellID: rest.cellID
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: influxdb-cells-mcp
    port: 9090
    transport: http
    description: MCP adapter for Complete InfluxDB Cloud API — Cells. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: create-dashboard-cell
      description: Create a dashboard cell
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: influxdb-cells.postdashboardsidcells
      with:
        dashboardID: tools.dashboardID
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: replace-cells-dashboard
      description: Replace cells in a dashboard
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: influxdb-cells.putdashboardsidcells
      with:
        dashboardID: tools.dashboardID
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-dashboard-cell
      description: Delete a dashboard cell
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: influxdb-cells.deletedashboardsidcellsid
      with:
        dashboardID: tools.dashboardID
        cellID: tools.cellID
      outputParameters:
      - type: object
        mapping: $.
    - name: update-non-positional-information-related
      description: Update the non-positional information related to a cell
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: influxdb-cells.patchdashboardsidcellsid
      with:
        dashboardID: tools.dashboardID
        cellID: tools.cellID
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-view-cell
      description: Retrieve the view for a cell
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: influxdb-cells.getdashboardsidcellsidview
      with:
        dashboardID: tools.dashboardID
        cellID: tools.cellID
      outputParameters:
      - type: object
        mapping: $.
    - name: update-view-cell
      description: Update the view for a cell
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: influxdb-cells.patchdashboardsidcellsidview
      with:
        dashboardID: tools.dashboardID
        cellID: tools.cellID
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.