EVE Online · Capability

EVE Online ESI — Wallet

ESI — Wallet. 6 operations. Lead operation: EVE Online Get a Character's Wallet Balance. Self-contained Naftiko capability covering one EVE Online business surface.

Run with Naftiko EVE OnlineESIWallet

What You Can Do

GET
Get_characters_character_id_wallet — EVE Online Get a Character's Wallet Balance
/v1/characters/{character-id}/wallet
GET
Get_characters_character_id_wallet_journal — EVE Online Get Character Wallet Journal
/v1/characters/{character-id}/wallet/journal
GET
Get_characters_character_id_wallet_transactions — EVE Online Get Wallet Transactions
/v1/characters/{character-id}/wallet/transactions
GET
Get_corporations_corporation_id_wallets — EVE Online Returns a Corporation's Wallet Balance
/v1/corporations/{corporation-id}/wallets
GET
Get_corporations_corporation_id_wallets_division_journal — EVE Online Get Corporation Wallet Journal
/v1/corporations/{corporation-id}/wallets/{division}/journal
GET
Get_corporations_corporation_id_wallets_division_transactions — EVE Online Get Corporation Wallet Transactions
/v1/corporations/{corporation-id}/wallets/{division}/transactions

MCP Tools

get-character-s-wallet-balance

EVE Online Get a Character's Wallet Balance

read-only idempotent
get-character-wallet-journal

EVE Online Get Character Wallet Journal

read-only idempotent
get-wallet-transactions

EVE Online Get Wallet Transactions

read-only idempotent
returns-corporation-s-wallet-balance

EVE Online Returns a Corporation's Wallet Balance

read-only idempotent
get-corporation-wallet-journal

EVE Online Get Corporation Wallet Journal

read-only idempotent
get-corporation-wallet-transactions

EVE Online Get Corporation Wallet Transactions

read-only idempotent

Capability Spec

eve-online-wallet.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: EVE Online ESI — Wallet
  description: "ESI — Wallet. 6 operations. Lead operation: EVE Online Get a Character's Wallet Balance. Self-contained Naftiko capability covering one EVE Online business surface."
  tags:
    - EVE Online
    - ESI
    - Wallet
  created: '2026-05-30'
  modified: '2026-05-30'
binds:
  - namespace: env
    keys:
      EVE_ONLINE_ACCESS_TOKEN: EVE_ONLINE_ACCESS_TOKEN
capability:
  consumes:
    - type: http
      namespace: eve-online-wallet
      baseUri: https://esi.evetech.net/latest
      description: EVE Online ESI — Wallet business capability. Self-contained, no shared references.
      authentication:
        type: bearer
        token: '{{env.EVE_ONLINE_ACCESS_TOKEN}}'
      resources:
        - name: characters-character-id-wallet
          path: /characters/{character_id}/wallet/
          operations:
            - name: get_characters_character_id_wallet
              method: GET
              description: EVE Online Get a Character's Wallet Balance
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: characters-character-id-wallet-journal
          path: /characters/{character_id}/wallet/journal/
          operations:
            - name: get_characters_character_id_wallet_journal
              method: GET
              description: EVE Online Get Character Wallet Journal
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: characters-character-id-wallet-transactions
          path: /characters/{character_id}/wallet/transactions/
          operations:
            - name: get_characters_character_id_wallet_transactions
              method: GET
              description: EVE Online Get Wallet Transactions
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: from_id
                  in: query
                  type: integer
                  required: false
                  description: Only show transactions happened before the one referenced by this id
        - name: corporations-corporation-id-wallets
          path: /corporations/{corporation_id}/wallets/
          operations:
            - name: get_corporations_corporation_id_wallets
              method: GET
              description: EVE Online Returns a Corporation's Wallet Balance
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: corporations-corporation-id-wallets-division-journal
          path: /corporations/{corporation_id}/wallets/{division}/journal/
          operations:
            - name: get_corporations_corporation_id_wallets_division_journal
              method: GET
              description: EVE Online Get Corporation Wallet Journal
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: division
                  in: path
                  type: integer
                  required: true
                  description: Wallet key of the division to fetch journals from
        - name: corporations-corporation-id-wallets-division-transactions
          path: /corporations/{corporation_id}/wallets/{division}/transactions/
          operations:
            - name: get_corporations_corporation_id_wallets_division_transactions
              method: GET
              description: EVE Online Get Corporation Wallet Transactions
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: division
                  in: path
                  type: integer
                  required: true
                  description: Wallet key of the division to fetch journals from
                - name: from_id
                  in: query
                  type: integer
                  required: false
                  description: Only show journal entries happened before the transaction referenced by this id
  exposes:
    - type: rest
      namespace: eve-online-wallet-rest
      port: 8080
      description: REST adapter for EVE Online ESI — Wallet. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/characters/{character-id}/wallet
          name: characters-character-id-wallet
          description: REST surface for /characters/{character_id}/wallet/.
          operations:
            - method: GET
              name: get_characters_character_id_wallet
              description: EVE Online Get a Character's Wallet Balance
              call: eve-online-wallet.get_characters_character_id_wallet
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/characters/{character-id}/wallet/journal
          name: characters-character-id-wallet-journal
          description: REST surface for /characters/{character_id}/wallet/journal/.
          operations:
            - method: GET
              name: get_characters_character_id_wallet_journal
              description: EVE Online Get Character Wallet Journal
              call: eve-online-wallet.get_characters_character_id_wallet_journal
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/characters/{character-id}/wallet/transactions
          name: characters-character-id-wallet-transactions
          description: REST surface for /characters/{character_id}/wallet/transactions/.
          operations:
            - method: GET
              name: get_characters_character_id_wallet_transactions
              description: EVE Online Get Wallet Transactions
              call: eve-online-wallet.get_characters_character_id_wallet_transactions
              with:
                from_id: rest.from_id
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/corporations/{corporation-id}/wallets
          name: corporations-corporation-id-wallets
          description: REST surface for /corporations/{corporation_id}/wallets/.
          operations:
            - method: GET
              name: get_corporations_corporation_id_wallets
              description: EVE Online Returns a Corporation's Wallet Balance
              call: eve-online-wallet.get_corporations_corporation_id_wallets
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/corporations/{corporation-id}/wallets/{division}/journal
          name: corporations-corporation-id-wallets-division-journal
          description: REST surface for /corporations/{corporation_id}/wallets/{division}/journal/.
          operations:
            - method: GET
              name: get_corporations_corporation_id_wallets_division_journal
              description: EVE Online Get Corporation Wallet Journal
              call: eve-online-wallet.get_corporations_corporation_id_wallets_division_journal
              with:
                division: rest.division
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/corporations/{corporation-id}/wallets/{division}/transactions
          name: corporations-corporation-id-wallets-division-transactions
          description: REST surface for /corporations/{corporation_id}/wallets/{division}/transactions/.
          operations:
            - method: GET
              name: get_corporations_corporation_id_wallets_division_transactions
              description: EVE Online Get Corporation Wallet Transactions
              call: eve-online-wallet.get_corporations_corporation_id_wallets_division_transactions
              with:
                division: rest.division
                from_id: rest.from_id
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: eve-online-wallet-mcp
      port: 9090
      transport: http
      description: MCP adapter for EVE Online ESI — Wallet. One tool per consumed operation, routed inline through this capability's consumes block.
      tools:
        - name: get-character-s-wallet-balance
          description: EVE Online Get a Character's Wallet Balance
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-wallet.get_characters_character_id_wallet
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: get-character-wallet-journal
          description: EVE Online Get Character Wallet Journal
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-wallet.get_characters_character_id_wallet_journal
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: get-wallet-transactions
          description: EVE Online Get Wallet Transactions
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-wallet.get_characters_character_id_wallet_transactions
          with:
            from_id: tools.from_id
          outputParameters:
            - type: object
              mapping: $.
        - name: returns-corporation-s-wallet-balance
          description: EVE Online Returns a Corporation's Wallet Balance
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-wallet.get_corporations_corporation_id_wallets
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: get-corporation-wallet-journal
          description: EVE Online Get Corporation Wallet Journal
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-wallet.get_corporations_corporation_id_wallets_division_journal
          with:
            division: tools.division
          outputParameters:
            - type: object
              mapping: $.
        - name: get-corporation-wallet-transactions
          description: EVE Online Get Corporation Wallet Transactions
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-wallet.get_corporations_corporation_id_wallets_division_transactions
          with:
            division: tools.division
            from_id: tools.from_id
          outputParameters:
            - type: object
              mapping: $.