Tableaux De Bord · Capability

Grafana Dashboard API — Organizations

Grafana Dashboard API — Organizations. 2 operations. Lead operation: List Organizations. Self-contained Naftiko capability covering one Tableaux De Bord business surface.

Run with Naftiko Tableaux De BordOrganizations

What You Can Do

GET
Listorganizations — List Organizations
/v1/orgs
POST
Createorganization — Create Organization
/v1/orgs

MCP Tools

list-organizations

List Organizations

read-only idempotent
create-organization

Create Organization

Capability Spec

grafana-dashboard-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Grafana Dashboard API — Organizations
  description: 'Grafana Dashboard API — Organizations. 2 operations. Lead operation: List Organizations. Self-contained Naftiko
    capability covering one Tableaux De Bord business surface.'
  tags:
  - Tableaux De Bord
  - Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TABLEAUX_DE_BORD_API_KEY: TABLEAUX_DE_BORD_API_KEY
capability:
  consumes:
  - type: http
    namespace: grafana-dashboard-organizations
    baseUri: https://{grafana-host}/api
    description: Grafana Dashboard API — Organizations business capability. Self-contained, no shared references.
    resources:
    - name: orgs
      path: /orgs
      operations:
      - name: listorganizations
        method: GET
        description: List Organizations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createorganization
        method: POST
        description: Create Organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.TABLEAUX_DE_BORD_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: grafana-dashboard-organizations-rest
    port: 8080
    description: REST adapter for Grafana Dashboard API — Organizations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/orgs
      name: orgs
      description: REST surface for orgs.
      operations:
      - method: GET
        name: listorganizations
        description: List Organizations
        call: grafana-dashboard-organizations.listorganizations
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorganization
        description: Create Organization
        call: grafana-dashboard-organizations.createorganization
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: grafana-dashboard-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Grafana Dashboard API — Organizations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-organizations
      description: List Organizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: grafana-dashboard-organizations.listorganizations
      outputParameters:
      - type: object
        mapping: $.
    - name: create-organization
      description: Create Organization
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: grafana-dashboard-organizations.createorganization
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.