SigNoz · Capability

SigNoz — authdomains

SigNoz — authdomains. 4 operations. Lead operation: List all auth domains. Self-contained Naftiko capability covering one Signoz business surface.

Run with Naftiko Signozauthdomains

What You Can Do

GET
Listauthdomains — List all auth domains
/v1/api/v1/domains
POST
Createauthdomain — Create auth domain
/v1/api/v1/domains
DELETE
Deleteauthdomain — Delete auth domain
/v1/api/v1/domains/{id}
PUT
Updateauthdomain — Update auth domain
/v1/api/v1/domains/{id}

MCP Tools

list-all-auth-domains

List all auth domains

read-only idempotent
create-auth-domain

Create auth domain

delete-auth-domain

Delete auth domain

idempotent
update-auth-domain

Update auth domain

idempotent

Capability Spec

signoz-authdomains.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SigNoz — authdomains
  description: 'SigNoz — authdomains. 4 operations. Lead operation: List all auth domains. Self-contained Naftiko capability
    covering one Signoz business surface.'
  tags:
  - Signoz
  - authdomains
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SIGNOZ_API_KEY: SIGNOZ_API_KEY
capability:
  consumes:
  - type: http
    namespace: signoz-authdomains
    baseUri: https://{host}:{port}{base_path}
    description: SigNoz — authdomains business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-domains
      path: /api/v1/domains
      operations:
      - name: listauthdomains
        method: GET
        description: List all auth domains
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createauthdomain
        method: POST
        description: Create auth domain
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: api-v1-domains-id
      path: /api/v1/domains/{id}
      operations:
      - name: deleteauthdomain
        method: DELETE
        description: Delete auth domain
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: updateauthdomain
        method: PUT
        description: Update auth domain
        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
    authentication:
      type: bearer
      token: '{{env.SIGNOZ_API_KEY}}'
  exposes:
  - type: rest
    namespace: signoz-authdomains-rest
    port: 8080
    description: REST adapter for SigNoz — authdomains. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v1/domains
      name: api-v1-domains
      description: REST surface for api-v1-domains.
      operations:
      - method: GET
        name: listauthdomains
        description: List all auth domains
        call: signoz-authdomains.listauthdomains
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createauthdomain
        description: Create auth domain
        call: signoz-authdomains.createauthdomain
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/domains/{id}
      name: api-v1-domains-id
      description: REST surface for api-v1-domains-id.
      operations:
      - method: DELETE
        name: deleteauthdomain
        description: Delete auth domain
        call: signoz-authdomains.deleteauthdomain
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateauthdomain
        description: Update auth domain
        call: signoz-authdomains.updateauthdomain
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: signoz-authdomains-mcp
    port: 9090
    transport: http
    description: MCP adapter for SigNoz — authdomains. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-all-auth-domains
      description: List all auth domains
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signoz-authdomains.listauthdomains
      outputParameters:
      - type: object
        mapping: $.
    - name: create-auth-domain
      description: Create auth domain
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: signoz-authdomains.createauthdomain
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-auth-domain
      description: Delete auth domain
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: signoz-authdomains.deleteauthdomain
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-auth-domain
      description: Update auth domain
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: signoz-authdomains.updateauthdomain
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.