SigNoz · Capability

SigNoz — orgs

SigNoz — orgs. 2 operations. Lead operation: Get my organization. Self-contained Naftiko capability covering one Signoz business surface.

Run with Naftiko Signozorgs

What You Can Do

GET
Getmyorganization — Get my organization
/v1/api/v2/orgs/me
PUT
Updatemyorganization — Update my organization
/v1/api/v2/orgs/me

MCP Tools

get-my-organization

Get my organization

read-only idempotent
update-my-organization

Update my organization

idempotent

Capability Spec

signoz-orgs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SigNoz — orgs
  description: 'SigNoz — orgs. 2 operations. Lead operation: Get my organization. Self-contained Naftiko capability covering
    one Signoz business surface.'
  tags:
  - Signoz
  - orgs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SIGNOZ_API_KEY: SIGNOZ_API_KEY
capability:
  consumes:
  - type: http
    namespace: signoz-orgs
    baseUri: https://{host}:{port}{base_path}
    description: SigNoz — orgs business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-orgs-me
      path: /api/v2/orgs/me
      operations:
      - name: getmyorganization
        method: GET
        description: Get my organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatemyorganization
        method: PUT
        description: Update my organization
        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-orgs-rest
    port: 8080
    description: REST adapter for SigNoz — orgs. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/v2/orgs/me
      name: api-v2-orgs-me
      description: REST surface for api-v2-orgs-me.
      operations:
      - method: GET
        name: getmyorganization
        description: Get my organization
        call: signoz-orgs.getmyorganization
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatemyorganization
        description: Update my organization
        call: signoz-orgs.updatemyorganization
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: signoz-orgs-mcp
    port: 9090
    transport: http
    description: MCP adapter for SigNoz — orgs. One tool per consumed operation, routed inline through this capability's consumes
      block.
    tools:
    - name: get-my-organization
      description: Get my organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signoz-orgs.getmyorganization
      outputParameters:
      - type: object
        mapping: $.
    - name: update-my-organization
      description: Update my organization
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: signoz-orgs.updatemyorganization
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.