Naftiko · Capability

Ai Studio Arazzo Financial Workflow Capability

A capability that ingests an Arazzo workflow from AI Studio and exposes the workflow as a single composed MCP tool — the apidays NYC co-branded financial-services artifact.

Run with Naftiko NaftikoArazzoAI StudioFinancial

What You Can Do

POST
Run financial workflow — Execute the financial-services Arazzo workflow as one composed call.
/run/{{workflow_id}}

MCP Tools

run-financial-workflow

Execute the financial-services Arazzo workflow end-to-end.

get-workflow

Inspect the underlying Arazzo workflow definition.

read-only

Capability Spec

ai-studio-arazzo-financial-workflow-capability.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  title: Ai Studio Arazzo Financial Workflow Capability
  description: A capability that ingests an Arazzo workflow from AI Studio and exposes the workflow as a single composed MCP tool — the apidays NYC co-branded financial-services artifact.
  tags: [Naftiko, Arazzo, AI Studio, Financial]
  created: '2026-05-01'
  modified: '2026-05-04'
binds:
- namespace: aistudio-env
  description: Speakeasy AI Studio API key.
  keys: {AI_STUDIO_API_KEY: AI_STUDIO_API_KEY}
capability:
  consumes:
  - namespace: aistudio
    type: http
    baseUri: https://api.aistudio.speakeasy.com
    authentication: {type: bearer, token: '{{AI_STUDIO_API_KEY}}'}
    resources:
    - name: workflow
      path: /v1/workflows/{{workflow_id}}
      operations:
      - name: get-arazzo-workflow
        method: GET
        description: Fetch an Arazzo (1.0) workflow document.
        inputParameters: [{name: workflow_id, in: path}]
    - name: workflow-execute
      path: /v1/workflows/{{workflow_id}}/executions
      operations:
      - name: execute-workflow
        method: POST
        description: Execute an Arazzo workflow with input parameters.
        inputParameters: [{name: workflow_id, in: path}]
  exposes:
  - type: rest
    address: 0.0.0.0
    port: 8080
    namespace: ai-studio-arazzo-financial-workflow-capability-rest
    description: REST surface that exposes a composed financial-services Arazzo workflow.
    resources:
    - name: run
      path: /run/{{workflow_id}}
      operations:
      - method: POST
        name: run-financial-workflow
        description: Execute the financial-services Arazzo workflow as one composed call.
        inputParameters: [{name: workflow_id, in: path, type: string}]
        call: aistudio.execute-workflow
  - type: mcp
    address: 0.0.0.0
    port: 3010
    namespace: ai-studio-arazzo-financial-workflow-capability-mcp
    description: MCP server collapsing the Arazzo workflow to a single agent tool.
    tools:
    - name: run-financial-workflow
      description: Execute the financial-services Arazzo workflow end-to-end.
      inputParameters: [{name: workflow_id, type: string, required: true}]
      call: aistudio.execute-workflow
    - name: get-workflow
      description: Inspect the underlying Arazzo workflow definition.
      hints: {readOnly: true}
      inputParameters: [{name: workflow_id, type: string, required: true}]
      call: aistudio.get-arazzo-workflow
  - type: skill
    address: 0.0.0.0
    port: 3011
    namespace: ai-studio-arazzo-financial-workflow-capability-skills
    description: Skill bundle wrapping the financial workflow.
    skills:
    - name: ai-studio-arazzo-financial-workflow-capability
      description: Run a financial-services Arazzo workflow as a single agent tool.
      location: file:///opt/naftiko/skills/ai-studio-arazzo-financial-workflow-capability
      allowed-tools: run-financial-workflow,get-workflow
      tools:
      - {name: run-financial-workflow, from: {sourceNamespace: ai-studio-arazzo-financial-workflow-capability-mcp, action: run-financial-workflow}}
      - {name: get-workflow, from: {sourceNamespace: ai-studio-arazzo-financial-workflow-capability-mcp, action: get-workflow}}