JFrog · Capability

JFrog Mission Control REST API — System

JFrog Mission Control REST API — System. 2 operations. Lead operation: JFrog System Ping. Self-contained Naftiko capability covering one Jfrog business surface.

Run with Naftiko JfrogSystem

What You Can Do

GET
Systemping — JFrog System Ping
/v1/v1/system/ping
GET
Getsystemversion — JFrog Get System Version
/v1/v1/system/version

MCP Tools

jfrog-system-ping

JFrog System Ping

read-only idempotent
jfrog-get-system-version

JFrog Get System Version

read-only idempotent

Capability Spec

mission-control-system.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: JFrog Mission Control REST API — System
  description: 'JFrog Mission Control REST API — System. 2 operations. Lead operation: JFrog System Ping. Self-contained Naftiko
    capability covering one Jfrog business surface.'
  tags:
  - Jfrog
  - System
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JFROG_API_KEY: JFROG_API_KEY
capability:
  consumes:
  - type: http
    namespace: mission-control-system
    baseUri: https://{server}.jfrog.io/mc/api
    description: JFrog Mission Control REST API — System business capability. Self-contained, no shared references.
    resources:
    - name: v1-system-ping
      path: /v1/system/ping
      operations:
      - name: systemping
        method: GET
        description: JFrog System Ping
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-system-version
      path: /v1/system/version
      operations:
      - name: getsystemversion
        method: GET
        description: JFrog Get System Version
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.JFROG_API_KEY}}'
  exposes:
  - type: rest
    namespace: mission-control-system-rest
    port: 8080
    description: REST adapter for JFrog Mission Control REST API — System. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/system/ping
      name: v1-system-ping
      description: REST surface for v1-system-ping.
      operations:
      - method: GET
        name: systemping
        description: JFrog System Ping
        call: mission-control-system.systemping
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/system/version
      name: v1-system-version
      description: REST surface for v1-system-version.
      operations:
      - method: GET
        name: getsystemversion
        description: JFrog Get System Version
        call: mission-control-system.getsystemversion
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: mission-control-system-mcp
    port: 9090
    transport: http
    description: MCP adapter for JFrog Mission Control REST API — System. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: jfrog-system-ping
      description: JFrog System Ping
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mission-control-system.systemping
      outputParameters:
      - type: object
        mapping: $.
    - name: jfrog-get-system-version
      description: JFrog Get System Version
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mission-control-system.getsystemversion
      outputParameters:
      - type: object
        mapping: $.