Orbital · Capability

Orbital Schema Management API — Services

Orbital Schema Management API — Services. 2 operations. Lead operation: Orbital List connected services. Self-contained Naftiko capability covering one Orbital business surface.

Run with Naftiko OrbitalServices

What You Can Do

GET
Listservices — Orbital List connected services
/v1/api/services
GET
Getservice — Orbital Get service details
/v1/api/services/{servicename}

MCP Tools

orbital-list-connected-services

Orbital List connected services

read-only idempotent
orbital-get-service-details

Orbital Get service details

read-only idempotent

Capability Spec

schema-management-services.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Orbital Schema Management API — Services
  description: 'Orbital Schema Management API — Services. 2 operations. Lead operation: Orbital List connected services. Self-contained
    Naftiko capability covering one Orbital business surface.'
  tags:
  - Orbital
  - Services
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORBITAL_API_KEY: ORBITAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: schema-management-services
    baseUri: https://localhost:9022
    description: Orbital Schema Management API — Services business capability. Self-contained, no shared references.
    resources:
    - name: api-services
      path: /api/services
      operations:
      - name: listservices
        method: GET
        description: Orbital List connected services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-services-serviceName
      path: /api/services/{serviceName}
      operations:
      - name: getservice
        method: GET
        description: Orbital Get service details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: serviceName
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: schema-management-services-rest
    port: 8080
    description: REST adapter for Orbital Schema Management API — Services. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/services
      name: api-services
      description: REST surface for api-services.
      operations:
      - method: GET
        name: listservices
        description: Orbital List connected services
        call: schema-management-services.listservices
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/services/{servicename}
      name: api-services-servicename
      description: REST surface for api-services-serviceName.
      operations:
      - method: GET
        name: getservice
        description: Orbital Get service details
        call: schema-management-services.getservice
        with:
          serviceName: rest.serviceName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: schema-management-services-mcp
    port: 9090
    transport: http
    description: MCP adapter for Orbital Schema Management API — Services. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: orbital-list-connected-services
      description: Orbital List connected services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: schema-management-services.listservices
      outputParameters:
      - type: object
        mapping: $.
    - name: orbital-get-service-details
      description: Orbital Get service details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: schema-management-services.getservice
      with:
        serviceName: tools.serviceName
      outputParameters:
      - type: object
        mapping: $.