Jentic · Capability

Jentic API — Execution

Jentic API — Execution. 2 operations. Lead operation: Execute An API Operation Or Workflow. Self-contained Naftiko capability covering one Jentic business surface.

Run with Naftiko JenticExecution

What You Can Do

POST
Executeoperation — Execute An API Operation Or Workflow
/v1/agents/execute
POST
Loadexecutioninfo — Load Execution Information For Operations
/v1/agents/load

MCP Tools

execute-api-operation-workflow

Execute An API Operation Or Workflow

load-execution-information-operations

Load Execution Information For Operations

Capability Spec

jentic-execution.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Jentic API — Execution
  description: 'Jentic API — Execution. 2 operations. Lead operation: Execute An API Operation Or Workflow. Self-contained
    Naftiko capability covering one Jentic business surface.'
  tags:
  - Jentic
  - Execution
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JENTIC_API_KEY: JENTIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: jentic-execution
    baseUri: https://api.jentic.com/api/v1
    description: Jentic API — Execution business capability. Self-contained, no shared references.
    resources:
    - name: agents-execute
      path: /agents/execute
      operations:
      - name: executeoperation
        method: POST
        description: Execute An API Operation Or Workflow
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: agents-load
      path: /agents/load
      operations:
      - name: loadexecutioninfo
        method: POST
        description: Load Execution Information For Operations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-JENTIC-API-KEY
      value: '{{env.JENTIC_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: jentic-execution-rest
    port: 8080
    description: REST adapter for Jentic API — Execution. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/agents/execute
      name: agents-execute
      description: REST surface for agents-execute.
      operations:
      - method: POST
        name: executeoperation
        description: Execute An API Operation Or Workflow
        call: jentic-execution.executeoperation
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/agents/load
      name: agents-load
      description: REST surface for agents-load.
      operations:
      - method: POST
        name: loadexecutioninfo
        description: Load Execution Information For Operations
        call: jentic-execution.loadexecutioninfo
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: jentic-execution-mcp
    port: 9090
    transport: http
    description: MCP adapter for Jentic API — Execution. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: execute-api-operation-workflow
      description: Execute An API Operation Or Workflow
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: jentic-execution.executeoperation
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: load-execution-information-operations
      description: Load Execution Information For Operations
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: jentic-execution.loadexecutioninfo
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.