FINOS · Capability

Pod API — Pod

Pod API — Pod. 3 operations. Lead operation: Get supported attachment types for the pod. Self-contained Naftiko capability covering one Finos business surface.

Run with Naftiko FinosPod

What You Can Do

GET
Get — Get supported attachment types for the pod
/v1/v1/files/allowedtypes
GET
Get — Lists available languages for the pod.
/v1/v1/languages
GET
Get — Retrieve the pod certificate that can be use to validate signed JWT tokens generated from the pod
/v1/v1/podcert

MCP Tools

get-supported-attachment-types-pod

Get supported attachment types for the pod

read-only idempotent
lists-available-languages-pod

Lists available languages for the pod.

read-only idempotent
retrieve-pod-certificate-that-can

Retrieve the pod certificate that can be use to validate signed JWT tokens generated from the pod

read-only idempotent

Capability Spec

symphony-pod-pod.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pod API — Pod
  description: 'Pod API — Pod. 3 operations. Lead operation: Get supported attachment types for the pod. Self-contained Naftiko
    capability covering one Finos business surface.'
  tags:
  - Finos
  - Pod
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FINOS_API_KEY: FINOS_API_KEY
capability:
  consumes:
  - type: http
    namespace: symphony-pod-pod
    baseUri: https://yourpodURL.symphony.com/pod
    description: Pod API — Pod business capability. Self-contained, no shared references.
    resources:
    - name: v1-files-allowedTypes
      path: /v1/files/allowedTypes
      operations:
      - name: get
        method: GET
        description: Get supported attachment types for the pod
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sessionToken
          in: header
          type: string
          description: Session authentication token.
          required: true
    - name: v1-languages
      path: /v1/languages
      operations:
      - name: get
        method: GET
        description: Lists available languages for the pod.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-podcert
      path: /v1/podcert
      operations:
      - name: get
        method: GET
        description: Retrieve the pod certificate that can be use to validate signed JWT tokens generated from the pod
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: symphony-pod-pod-rest
    port: 8080
    description: REST adapter for Pod API — Pod. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v1/files/allowedtypes
      name: v1-files-allowedtypes
      description: REST surface for v1-files-allowedTypes.
      operations:
      - method: GET
        name: get
        description: Get supported attachment types for the pod
        call: symphony-pod-pod.get
        with:
          sessionToken: rest.sessionToken
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/languages
      name: v1-languages
      description: REST surface for v1-languages.
      operations:
      - method: GET
        name: get
        description: Lists available languages for the pod.
        call: symphony-pod-pod.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/podcert
      name: v1-podcert
      description: REST surface for v1-podcert.
      operations:
      - method: GET
        name: get
        description: Retrieve the pod certificate that can be use to validate signed JWT tokens generated from the pod
        call: symphony-pod-pod.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: symphony-pod-pod-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pod API — Pod. One tool per consumed operation, routed inline through this capability's consumes
      block.
    tools:
    - name: get-supported-attachment-types-pod
      description: Get supported attachment types for the pod
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: symphony-pod-pod.get
      with:
        sessionToken: tools.sessionToken
      outputParameters:
      - type: object
        mapping: $.
    - name: lists-available-languages-pod
      description: Lists available languages for the pod.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: symphony-pod-pod.get
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-pod-certificate-that-can
      description: Retrieve the pod certificate that can be use to validate signed JWT tokens generated from the pod
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: symphony-pod-pod.get
      outputParameters:
      - type: object
        mapping: $.