SigNoz · Capability

SigNoz — dashboard

SigNoz — dashboard. 6 operations. Lead operation: Delete public dashboard. Self-contained Naftiko capability covering one Signoz business surface.

Run with Naftiko Signozdashboard

What You Can Do

DELETE
Deletepublicdashboard — Delete public dashboard
/v1/api/v1/dashboards/{id}/public
GET
Getpublicdashboard — Get public dashboard
/v1/api/v1/dashboards/{id}/public
POST
Createpublicdashboard — Create public dashboard
/v1/api/v1/dashboards/{id}/public
PUT
Updatepublicdashboard — Update public dashboard
/v1/api/v1/dashboards/{id}/public
GET
Getpublicdashboarddata — Get public dashboard data
/v1/api/v1/public/dashboards/{id}
GET
Getpublicdashboardwidgetqueryrange — Get query range result
/v1/api/v1/public/dashboards/{id}/widgets/{idx}/query-range

MCP Tools

delete-public-dashboard

Delete public dashboard

idempotent
get-public-dashboard

Get public dashboard

read-only idempotent
create-public-dashboard

Create public dashboard

update-public-dashboard

Update public dashboard

idempotent
get-public-dashboard-data

Get public dashboard data

read-only idempotent
get-query-range-result

Get query range result

read-only idempotent

Capability Spec

signoz-dashboard.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SigNoz — dashboard
  description: 'SigNoz — dashboard. 6 operations. Lead operation: Delete public dashboard. Self-contained Naftiko capability
    covering one Signoz business surface.'
  tags:
  - Signoz
  - dashboard
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SIGNOZ_API_KEY: SIGNOZ_API_KEY
capability:
  consumes:
  - type: http
    namespace: signoz-dashboard
    baseUri: https://{host}:{port}{base_path}
    description: SigNoz — dashboard business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-dashboards-id-public
      path: /api/v1/dashboards/{id}/public
      operations:
      - name: deletepublicdashboard
        method: DELETE
        description: Delete public dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: getpublicdashboard
        method: GET
        description: Get public dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: createpublicdashboard
        method: POST
        description: Create public dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: updatepublicdashboard
        method: PUT
        description: Update public dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: api-v1-public-dashboards-id
      path: /api/v1/public/dashboards/{id}
      operations:
      - name: getpublicdashboarddata
        method: GET
        description: Get public dashboard data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    - name: api-v1-public-dashboards-id-widgets-idx-query_range
      path: /api/v1/public/dashboards/{id}/widgets/{idx}/query_range
      operations:
      - name: getpublicdashboardwidgetqueryrange
        method: GET
        description: Get query range result
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: idx
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.SIGNOZ_API_KEY}}'
  exposes:
  - type: rest
    namespace: signoz-dashboard-rest
    port: 8080
    description: REST adapter for SigNoz — dashboard. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v1/dashboards/{id}/public
      name: api-v1-dashboards-id-public
      description: REST surface for api-v1-dashboards-id-public.
      operations:
      - method: DELETE
        name: deletepublicdashboard
        description: Delete public dashboard
        call: signoz-dashboard.deletepublicdashboard
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getpublicdashboard
        description: Get public dashboard
        call: signoz-dashboard.getpublicdashboard
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpublicdashboard
        description: Create public dashboard
        call: signoz-dashboard.createpublicdashboard
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatepublicdashboard
        description: Update public dashboard
        call: signoz-dashboard.updatepublicdashboard
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/public/dashboards/{id}
      name: api-v1-public-dashboards-id
      description: REST surface for api-v1-public-dashboards-id.
      operations:
      - method: GET
        name: getpublicdashboarddata
        description: Get public dashboard data
        call: signoz-dashboard.getpublicdashboarddata
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/public/dashboards/{id}/widgets/{idx}/query-range
      name: api-v1-public-dashboards-id-widgets-idx-query-range
      description: REST surface for api-v1-public-dashboards-id-widgets-idx-query_range.
      operations:
      - method: GET
        name: getpublicdashboardwidgetqueryrange
        description: Get query range result
        call: signoz-dashboard.getpublicdashboardwidgetqueryrange
        with:
          id: rest.id
          idx: rest.idx
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: signoz-dashboard-mcp
    port: 9090
    transport: http
    description: MCP adapter for SigNoz — dashboard. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: delete-public-dashboard
      description: Delete public dashboard
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: signoz-dashboard.deletepublicdashboard
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-public-dashboard
      description: Get public dashboard
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signoz-dashboard.getpublicdashboard
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: create-public-dashboard
      description: Create public dashboard
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: signoz-dashboard.createpublicdashboard
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-public-dashboard
      description: Update public dashboard
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: signoz-dashboard.updatepublicdashboard
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-public-dashboard-data
      description: Get public dashboard data
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signoz-dashboard.getpublicdashboarddata
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-query-range-result
      description: Get query range result
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signoz-dashboard.getpublicdashboardwidgetqueryrange
      with:
        id: tools.id
        idx: tools.idx
      outputParameters:
      - type: object
        mapping: $.