EVE Online · Capability

EVE Online ESI — Loyalty

ESI — Loyalty. 2 operations. Lead operation: EVE Online Get Loyalty Points. Self-contained Naftiko capability covering one EVE Online business surface.

Run with Naftiko EVE OnlineESILoyalty

What You Can Do

GET
Get_characters_character_id_loyalty_points — EVE Online Get Loyalty Points
/v1/characters/{character-id}/loyalty/points
GET
Get_loyalty_stores_corporation_id_offers — EVE Online List Loyalty Store Offers
/v1/loyalty/stores/{corporation-id}/offers

MCP Tools

get-loyalty-points

EVE Online Get Loyalty Points

read-only idempotent
list-loyalty-store-offers

EVE Online List Loyalty Store Offers

read-only idempotent

Capability Spec

eve-online-loyalty.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: EVE Online ESI — Loyalty
  description: 'ESI — Loyalty. 2 operations. Lead operation: EVE Online Get Loyalty Points. Self-contained Naftiko capability covering one EVE Online business surface.'
  tags:
    - EVE Online
    - ESI
    - Loyalty
  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-loyalty
      baseUri: https://esi.evetech.net/latest
      description: EVE Online ESI — Loyalty business capability. Self-contained, no shared references.
      authentication:
        type: bearer
        token: '{{env.EVE_ONLINE_ACCESS_TOKEN}}'
      resources:
        - name: characters-character-id-loyalty-points
          path: /characters/{character_id}/loyalty/points/
          operations:
            - name: get_characters_character_id_loyalty_points
              method: GET
              description: EVE Online Get Loyalty Points
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: loyalty-stores-corporation-id-offers
          path: /loyalty/stores/{corporation_id}/offers/
          operations:
            - name: get_loyalty_stores_corporation_id_offers
              method: GET
              description: EVE Online List Loyalty Store Offers
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
  exposes:
    - type: rest
      namespace: eve-online-loyalty-rest
      port: 8080
      description: REST adapter for EVE Online ESI — Loyalty. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/characters/{character-id}/loyalty/points
          name: characters-character-id-loyalty-points
          description: REST surface for /characters/{character_id}/loyalty/points/.
          operations:
            - method: GET
              name: get_characters_character_id_loyalty_points
              description: EVE Online Get Loyalty Points
              call: eve-online-loyalty.get_characters_character_id_loyalty_points
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/loyalty/stores/{corporation-id}/offers
          name: loyalty-stores-corporation-id-offers
          description: REST surface for /loyalty/stores/{corporation_id}/offers/.
          operations:
            - method: GET
              name: get_loyalty_stores_corporation_id_offers
              description: EVE Online List Loyalty Store Offers
              call: eve-online-loyalty.get_loyalty_stores_corporation_id_offers
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: eve-online-loyalty-mcp
      port: 9090
      transport: http
      description: MCP adapter for EVE Online ESI — Loyalty. One tool per consumed operation, routed inline through this capability's consumes block.
      tools:
        - name: get-loyalty-points
          description: EVE Online Get Loyalty Points
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-loyalty.get_characters_character_id_loyalty_points
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: list-loyalty-store-offers
          description: EVE Online List Loyalty Store Offers
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-loyalty.get_loyalty_stores_corporation_id_offers
          with: {}
          outputParameters:
            - type: object
              mapping: $.