Application Research · Capability

Application Research Open Component Model API — Signatures

Application Research Open Component Model API — Signatures. 3 operations. Lead operation: Application Research List signatures for a component. Self-contained Naftiko capability covering one Application Research business surface.

Run with Naftiko Application ResearchSignatures

What You Can Do

GET
Listcomponentsignatures — Application Research List signatures for a component
/v1/components/{name}/signatures
POST
Signcomponent — Application Research Sign a component
/v1/components/{name}/signatures
POST
Verifycomponentsignature — Application Research Verify a component signature
/v1/components/{name}/signatures/{signaturename}/verify

MCP Tools

application-research-list-signatures-component

Application Research List signatures for a component

read-only idempotent
application-research-sign-component

Application Research Sign a component

read-only
application-research-verify-component-signature

Application Research Verify a component signature

read-only

Capability Spec

open-component-model-signatures.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Application Research Open Component Model API — Signatures
  description: 'Application Research Open Component Model API — Signatures. 3 operations. Lead operation: Application Research
    List signatures for a component. Self-contained Naftiko capability covering one Application Research business surface.'
  tags:
  - Application Research
  - Signatures
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPLICATION_RESEARCH_API_KEY: APPLICATION_RESEARCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: open-component-model-signatures
    baseUri: https://api.ocm.example.com/v1
    description: Application Research Open Component Model API — Signatures business capability. Self-contained, no shared
      references.
    resources:
    - name: components-name-signatures
      path: /components/{name}/signatures
      operations:
      - name: listcomponentsignatures
        method: GET
        description: Application Research List signatures for a component
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: signcomponent
        method: POST
        description: Application Research Sign a component
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: components-name-signatures-signatureName-verify
      path: /components/{name}/signatures/{signatureName}/verify
      operations:
      - name: verifycomponentsignature
        method: POST
        description: Application Research Verify a component signature
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.APPLICATION_RESEARCH_API_KEY}}'
  exposes:
  - type: rest
    namespace: open-component-model-signatures-rest
    port: 8080
    description: REST adapter for Application Research Open Component Model API — Signatures. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/components/{name}/signatures
      name: components-name-signatures
      description: REST surface for components-name-signatures.
      operations:
      - method: GET
        name: listcomponentsignatures
        description: Application Research List signatures for a component
        call: open-component-model-signatures.listcomponentsignatures
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: signcomponent
        description: Application Research Sign a component
        call: open-component-model-signatures.signcomponent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/components/{name}/signatures/{signaturename}/verify
      name: components-name-signatures-signaturename-verify
      description: REST surface for components-name-signatures-signatureName-verify.
      operations:
      - method: POST
        name: verifycomponentsignature
        description: Application Research Verify a component signature
        call: open-component-model-signatures.verifycomponentsignature
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: open-component-model-signatures-mcp
    port: 9090
    transport: http
    description: MCP adapter for Application Research Open Component Model API — Signatures. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: application-research-list-signatures-component
      description: Application Research List signatures for a component
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: open-component-model-signatures.listcomponentsignatures
      outputParameters:
      - type: object
        mapping: $.
    - name: application-research-sign-component
      description: Application Research Sign a component
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: open-component-model-signatures.signcomponent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: application-research-verify-component-signature
      description: Application Research Verify a component signature
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: open-component-model-signatures.verifycomponentsignature
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.