SafeLine · Capability

SafeLine Management API — System

SafeLine Management API — System. 2 operations. Lead operation: Get License Information. Self-contained Naftiko capability covering one Safeline business surface.

Run with Naftiko SafelineSystem

What You Can Do

GET
Getlicenseinfo — Get License Information
/v1/api/licenseapi
GET
Getnodeinfo — Get Node Information
/v1/api/nodeinfoapi

MCP Tools

get-license-information

Get License Information

read-only idempotent
get-node-information

Get Node Information

read-only idempotent

Capability Spec

management-system.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SafeLine Management API — System
  description: 'SafeLine Management API — System. 2 operations. Lead operation: Get License Information. Self-contained Naftiko
    capability covering one Safeline business surface.'
  tags:
  - Safeline
  - System
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SAFELINE_API_KEY: SAFELINE_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-system
    baseUri: https://{host}:9443
    description: SafeLine Management API — System business capability. Self-contained, no shared references.
    resources:
    - name: api-LicenseAPI
      path: /api/LicenseAPI
      operations:
      - name: getlicenseinfo
        method: GET
        description: Get License Information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-NodeInfoAPI
      path: /api/NodeInfoAPI
      operations:
      - name: getnodeinfo
        method: GET
        description: Get Node Information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-SLCE-API-Token
      value: '{{env.SAFELINE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: management-system-rest
    port: 8080
    description: REST adapter for SafeLine Management API — System. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/licenseapi
      name: api-licenseapi
      description: REST surface for api-LicenseAPI.
      operations:
      - method: GET
        name: getlicenseinfo
        description: Get License Information
        call: management-system.getlicenseinfo
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/nodeinfoapi
      name: api-nodeinfoapi
      description: REST surface for api-NodeInfoAPI.
      operations:
      - method: GET
        name: getnodeinfo
        description: Get Node Information
        call: management-system.getnodeinfo
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-system-mcp
    port: 9090
    transport: http
    description: MCP adapter for SafeLine Management API — System. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-license-information
      description: Get License Information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-system.getlicenseinfo
      outputParameters:
      - type: object
        mapping: $.
    - name: get-node-information
      description: Get Node Information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-system.getnodeinfo
      outputParameters:
      - type: object
        mapping: $.