wells-fargo · Capability

Wells Fargo Account Transactions API — Accounts

Wells Fargo Account Transactions API — Accounts. 2 operations. Lead operation: List Accounts. Self-contained Naftiko capability covering one Wells Fargo business surface.

Run with Naftiko Wells FargoAccounts

What You Can Do

GET
Listaccounts — List Accounts
/v1/v3/accounts
GET
Getaccountbalances — Get Account Balances
/v1/v3/accounts/{accountid}/balances

MCP Tools

list-accounts

List Accounts

read-only idempotent
get-account-balances

Get Account Balances

read-only idempotent

Capability Spec

account-transactions-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Wells Fargo Account Transactions API — Accounts
  description: 'Wells Fargo Account Transactions API — Accounts. 2 operations. Lead operation: List Accounts. Self-contained
    Naftiko capability covering one Wells Fargo business surface.'
  tags:
  - Wells Fargo
  - Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WELLS_FARGO_API_KEY: WELLS_FARGO_API_KEY
capability:
  consumes:
  - type: http
    namespace: account-transactions-accounts
    baseUri: https://api.wellsfargo.com
    description: Wells Fargo Account Transactions API — Accounts business capability. Self-contained, no shared references.
    resources:
    - name: v3-accounts
      path: /v3/accounts
      operations:
      - name: listaccounts
        method: GET
        description: List Accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v3-accounts-accountId-balances
      path: /v3/accounts/{accountId}/balances
      operations:
      - name: getaccountbalances
        method: GET
        description: Get Account Balances
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          description: The Wells Fargo account identifier.
          required: true
    authentication:
      type: bearer
      token: '{{env.WELLS_FARGO_API_KEY}}'
  exposes:
  - type: rest
    namespace: account-transactions-accounts-rest
    port: 8080
    description: REST adapter for Wells Fargo Account Transactions API — Accounts. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v3/accounts
      name: v3-accounts
      description: REST surface for v3-accounts.
      operations:
      - method: GET
        name: listaccounts
        description: List Accounts
        call: account-transactions-accounts.listaccounts
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/accounts/{accountid}/balances
      name: v3-accounts-accountid-balances
      description: REST surface for v3-accounts-accountId-balances.
      operations:
      - method: GET
        name: getaccountbalances
        description: Get Account Balances
        call: account-transactions-accounts.getaccountbalances
        with:
          accountId: rest.accountId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: account-transactions-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Wells Fargo Account Transactions API — Accounts. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-accounts
      description: List Accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: account-transactions-accounts.listaccounts
      outputParameters:
      - type: object
        mapping: $.
    - name: get-account-balances
      description: Get Account Balances
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: account-transactions-accounts.getaccountbalances
      with:
        accountId: tools.accountId
      outputParameters:
      - type: object
        mapping: $.