SigNoz · Capability

SigNoz — authz

SigNoz — authz. 2 operations. Lead operation: Check permissions. Self-contained Naftiko capability covering one Signoz business surface.

Run with Naftiko Signozauthz

What You Can Do

POST
Authzcheck — Check permissions
/v1/api/v1/authz/check
GET
Authzresources — Get resources
/v1/api/v1/authz/resources

MCP Tools

check-permissions

Check permissions

read-only
get-resources

Get resources

read-only idempotent

Capability Spec

signoz-authz.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SigNoz — authz
  description: 'SigNoz — authz. 2 operations. Lead operation: Check permissions. Self-contained Naftiko capability covering
    one Signoz business surface.'
  tags:
  - Signoz
  - authz
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SIGNOZ_API_KEY: SIGNOZ_API_KEY
capability:
  consumes:
  - type: http
    namespace: signoz-authz
    baseUri: https://{host}:{port}{base_path}
    description: SigNoz — authz business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-authz-check
      path: /api/v1/authz/check
      operations:
      - name: authzcheck
        method: POST
        description: Check permissions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: api-v1-authz-resources
      path: /api/v1/authz/resources
      operations:
      - name: authzresources
        method: GET
        description: Get resources
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SIGNOZ_API_KEY}}'
  exposes:
  - type: rest
    namespace: signoz-authz-rest
    port: 8080
    description: REST adapter for SigNoz — authz. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/v1/authz/check
      name: api-v1-authz-check
      description: REST surface for api-v1-authz-check.
      operations:
      - method: POST
        name: authzcheck
        description: Check permissions
        call: signoz-authz.authzcheck
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/authz/resources
      name: api-v1-authz-resources
      description: REST surface for api-v1-authz-resources.
      operations:
      - method: GET
        name: authzresources
        description: Get resources
        call: signoz-authz.authzresources
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: signoz-authz-mcp
    port: 9090
    transport: http
    description: MCP adapter for SigNoz — authz. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: check-permissions
      description: Check permissions
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: signoz-authz.authzcheck
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-resources
      description: Get resources
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signoz-authz.authzresources
      outputParameters:
      - type: object
        mapping: $.