SigNoz · Capability

SigNoz — querier

SigNoz — querier. 2 operations. Lead operation: Query range. Self-contained Naftiko capability covering one Signoz business surface.

Run with Naftiko Signozquerier

What You Can Do

POST
Queryrangev5 — Query range
/v1/api/v5/query-range
POST
Replacevariables — Replace variables
/v1/api/v5/substitute-vars

MCP Tools

query-range

Query range

read-only
replace-variables

Replace variables

Capability Spec

signoz-querier.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SigNoz — querier
  description: 'SigNoz — querier. 2 operations. Lead operation: Query range. Self-contained Naftiko capability covering one
    Signoz business surface.'
  tags:
  - Signoz
  - querier
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SIGNOZ_API_KEY: SIGNOZ_API_KEY
capability:
  consumes:
  - type: http
    namespace: signoz-querier
    baseUri: https://{host}:{port}{base_path}
    description: SigNoz — querier business capability. Self-contained, no shared references.
    resources:
    - name: api-v5-query_range
      path: /api/v5/query_range
      operations:
      - name: queryrangev5
        method: POST
        description: Query range
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: api-v5-substitute_vars
      path: /api/v5/substitute_vars
      operations:
      - name: replacevariables
        method: POST
        description: Replace variables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - 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-querier-rest
    port: 8080
    description: REST adapter for SigNoz — querier. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/api/v5/query-range
      name: api-v5-query-range
      description: REST surface for api-v5-query_range.
      operations:
      - method: POST
        name: queryrangev5
        description: Query range
        call: signoz-querier.queryrangev5
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v5/substitute-vars
      name: api-v5-substitute-vars
      description: REST surface for api-v5-substitute_vars.
      operations:
      - method: POST
        name: replacevariables
        description: Replace variables
        call: signoz-querier.replacevariables
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: signoz-querier-mcp
    port: 9090
    transport: http
    description: MCP adapter for SigNoz — querier. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: query-range
      description: Query range
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: signoz-querier.queryrangev5
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: replace-variables
      description: Replace variables
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: signoz-querier.replacevariables
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.