EVE Online · Capability

EVE Online ESI — Dogma

ESI — Dogma. 5 operations. Lead operation: EVE Online Get Attributes. Self-contained Naftiko capability covering one EVE Online business surface.

Run with Naftiko EVE OnlineESIDogma

What You Can Do

GET
Get_dogma_attributes — EVE Online Get Attributes
/v1/dogma/attributes
GET
Get_dogma_attributes_attribute_id — EVE Online Get Attribute Information
/v1/dogma/attributes/{attribute-id}
GET
Get_dogma_dynamic_items_type_id_item_id — EVE Online Get Dynamic Item Information
/v1/dogma/dynamic/items/{type-id}/{item-id}
GET
Get_dogma_effects — EVE Online Get Effects
/v1/dogma/effects
GET
Get_dogma_effects_effect_id — EVE Online Get Effect Information
/v1/dogma/effects/{effect-id}

MCP Tools

get-attributes

EVE Online Get Attributes

read-only idempotent
get-attribute-information

EVE Online Get Attribute Information

read-only idempotent
get-dynamic-item-information

EVE Online Get Dynamic Item Information

read-only idempotent
get-effects

EVE Online Get Effects

read-only idempotent
get-effect-information

EVE Online Get Effect Information

read-only idempotent

Capability Spec

eve-online-dogma.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: EVE Online ESI — Dogma
  description: 'ESI — Dogma. 5 operations. Lead operation: EVE Online Get Attributes. Self-contained Naftiko capability covering one EVE Online business surface.'
  tags:
    - EVE Online
    - ESI
    - Dogma
  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-dogma
      baseUri: https://esi.evetech.net/latest
      description: EVE Online ESI — Dogma business capability. Self-contained, no shared references.
      authentication:
        type: bearer
        token: '{{env.EVE_ONLINE_ACCESS_TOKEN}}'
      resources:
        - name: dogma-attributes
          path: /dogma/attributes/
          operations:
            - name: get_dogma_attributes
              method: GET
              description: EVE Online Get Attributes
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: dogma-attributes-attribute-id
          path: /dogma/attributes/{attribute_id}/
          operations:
            - name: get_dogma_attributes_attribute_id
              method: GET
              description: EVE Online Get Attribute Information
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: attribute_id
                  in: path
                  type: integer
                  required: true
                  description: A dogma attribute ID
        - name: dogma-dynamic-items-type-id-item-id
          path: /dogma/dynamic/items/{type_id}/{item_id}/
          operations:
            - name: get_dogma_dynamic_items_type_id_item_id
              method: GET
              description: EVE Online Get Dynamic Item Information
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: item_id
                  in: path
                  type: integer
                  required: true
                  description: item_id integer
                - name: type_id
                  in: path
                  type: integer
                  required: true
                  description: type_id integer
        - name: dogma-effects
          path: /dogma/effects/
          operations:
            - name: get_dogma_effects
              method: GET
              description: EVE Online Get Effects
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: dogma-effects-effect-id
          path: /dogma/effects/{effect_id}/
          operations:
            - name: get_dogma_effects_effect_id
              method: GET
              description: EVE Online Get Effect Information
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: effect_id
                  in: path
                  type: integer
                  required: true
                  description: A dogma effect ID
  exposes:
    - type: rest
      namespace: eve-online-dogma-rest
      port: 8080
      description: REST adapter for EVE Online ESI — Dogma. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/dogma/attributes
          name: dogma-attributes
          description: REST surface for /dogma/attributes/.
          operations:
            - method: GET
              name: get_dogma_attributes
              description: EVE Online Get Attributes
              call: eve-online-dogma.get_dogma_attributes
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/dogma/attributes/{attribute-id}
          name: dogma-attributes-attribute-id
          description: REST surface for /dogma/attributes/{attribute_id}/.
          operations:
            - method: GET
              name: get_dogma_attributes_attribute_id
              description: EVE Online Get Attribute Information
              call: eve-online-dogma.get_dogma_attributes_attribute_id
              with:
                attribute_id: rest.attribute_id
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/dogma/dynamic/items/{type-id}/{item-id}
          name: dogma-dynamic-items-type-id-item-id
          description: REST surface for /dogma/dynamic/items/{type_id}/{item_id}/.
          operations:
            - method: GET
              name: get_dogma_dynamic_items_type_id_item_id
              description: EVE Online Get Dynamic Item Information
              call: eve-online-dogma.get_dogma_dynamic_items_type_id_item_id
              with:
                item_id: rest.item_id
                type_id: rest.type_id
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/dogma/effects
          name: dogma-effects
          description: REST surface for /dogma/effects/.
          operations:
            - method: GET
              name: get_dogma_effects
              description: EVE Online Get Effects
              call: eve-online-dogma.get_dogma_effects
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/dogma/effects/{effect-id}
          name: dogma-effects-effect-id
          description: REST surface for /dogma/effects/{effect_id}/.
          operations:
            - method: GET
              name: get_dogma_effects_effect_id
              description: EVE Online Get Effect Information
              call: eve-online-dogma.get_dogma_effects_effect_id
              with:
                effect_id: rest.effect_id
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: eve-online-dogma-mcp
      port: 9090
      transport: http
      description: MCP adapter for EVE Online ESI — Dogma. One tool per consumed operation, routed inline through this capability's consumes block.
      tools:
        - name: get-attributes
          description: EVE Online Get Attributes
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-dogma.get_dogma_attributes
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: get-attribute-information
          description: EVE Online Get Attribute Information
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-dogma.get_dogma_attributes_attribute_id
          with:
            attribute_id: tools.attribute_id
          outputParameters:
            - type: object
              mapping: $.
        - name: get-dynamic-item-information
          description: EVE Online Get Dynamic Item Information
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-dogma.get_dogma_dynamic_items_type_id_item_id
          with:
            item_id: tools.item_id
            type_id: tools.type_id
          outputParameters:
            - type: object
              mapping: $.
        - name: get-effects
          description: EVE Online Get Effects
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-dogma.get_dogma_effects
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: get-effect-information
          description: EVE Online Get Effect Information
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-dogma.get_dogma_effects_effect_id
          with:
            effect_id: tools.effect_id
          outputParameters:
            - type: object
              mapping: $.