EVE Online · Capability

EVE Online ESI — Planetary Interaction

ESI — Planetary Interaction. 4 operations. Lead operation: EVE Online Get Colonies. Self-contained Naftiko capability covering one EVE Online business surface.

Run with Naftiko EVE OnlineESIPlanetary Interaction

What You Can Do

GET
Get_characters_character_id_planets — EVE Online Get Colonies
/v1/characters/{character-id}/planets
GET
Get_characters_character_id_planets_planet_id — EVE Online Get Colony Layout
/v1/characters/{character-id}/planets/{planet-id}
GET
Get_corporations_corporation_id_customs_offices — EVE Online List Corporation Customs Offices
/v1/corporations/{corporation-id}/customs-offices
GET
Get_universe_schematics_schematic_id — EVE Online Get Schematic Information
/v1/universe/schematics/{schematic-id}

MCP Tools

get-colonies

EVE Online Get Colonies

read-only idempotent
get-colony-layout

EVE Online Get Colony Layout

read-only idempotent
list-corporation-customs-offices

EVE Online List Corporation Customs Offices

read-only idempotent
get-schematic-information

EVE Online Get Schematic Information

read-only idempotent

Capability Spec

eve-online-planetary-interaction.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: EVE Online ESI — Planetary Interaction
  description: 'ESI — Planetary Interaction. 4 operations. Lead operation: EVE Online Get Colonies. Self-contained Naftiko capability covering one EVE Online business surface.'
  tags:
    - EVE Online
    - ESI
    - Planetary Interaction
  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-planetary-interaction
      baseUri: https://esi.evetech.net/latest
      description: EVE Online ESI — Planetary Interaction business capability. Self-contained, no shared references.
      authentication:
        type: bearer
        token: '{{env.EVE_ONLINE_ACCESS_TOKEN}}'
      resources:
        - name: characters-character-id-planets
          path: /characters/{character_id}/planets/
          operations:
            - name: get_characters_character_id_planets
              method: GET
              description: EVE Online Get Colonies
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: characters-character-id-planets-planet-id
          path: /characters/{character_id}/planets/{planet_id}/
          operations:
            - name: get_characters_character_id_planets_planet_id
              method: GET
              description: EVE Online Get Colony Layout
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: planet_id
                  in: path
                  type: integer
                  required: true
                  description: Planet id of the target planet
        - name: corporations-corporation-id-customs-offices
          path: /corporations/{corporation_id}/customs_offices/
          operations:
            - name: get_corporations_corporation_id_customs_offices
              method: GET
              description: EVE Online List Corporation Customs Offices
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: universe-schematics-schematic-id
          path: /universe/schematics/{schematic_id}/
          operations:
            - name: get_universe_schematics_schematic_id
              method: GET
              description: EVE Online Get Schematic Information
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: schematic_id
                  in: path
                  type: integer
                  required: true
                  description: A PI schematic ID
  exposes:
    - type: rest
      namespace: eve-online-planetary-interaction-rest
      port: 8080
      description: REST adapter for EVE Online ESI — Planetary Interaction. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/characters/{character-id}/planets
          name: characters-character-id-planets
          description: REST surface for /characters/{character_id}/planets/.
          operations:
            - method: GET
              name: get_characters_character_id_planets
              description: EVE Online Get Colonies
              call: eve-online-planetary-interaction.get_characters_character_id_planets
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/characters/{character-id}/planets/{planet-id}
          name: characters-character-id-planets-planet-id
          description: REST surface for /characters/{character_id}/planets/{planet_id}/.
          operations:
            - method: GET
              name: get_characters_character_id_planets_planet_id
              description: EVE Online Get Colony Layout
              call: eve-online-planetary-interaction.get_characters_character_id_planets_planet_id
              with:
                planet_id: rest.planet_id
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/corporations/{corporation-id}/customs-offices
          name: corporations-corporation-id-customs-offices
          description: REST surface for /corporations/{corporation_id}/customs_offices/.
          operations:
            - method: GET
              name: get_corporations_corporation_id_customs_offices
              description: EVE Online List Corporation Customs Offices
              call: eve-online-planetary-interaction.get_corporations_corporation_id_customs_offices
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/universe/schematics/{schematic-id}
          name: universe-schematics-schematic-id
          description: REST surface for /universe/schematics/{schematic_id}/.
          operations:
            - method: GET
              name: get_universe_schematics_schematic_id
              description: EVE Online Get Schematic Information
              call: eve-online-planetary-interaction.get_universe_schematics_schematic_id
              with:
                schematic_id: rest.schematic_id
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: eve-online-planetary-interaction-mcp
      port: 9090
      transport: http
      description: MCP adapter for EVE Online ESI — Planetary Interaction. One tool per consumed operation, routed inline through this capability's consumes block.
      tools:
        - name: get-colonies
          description: EVE Online Get Colonies
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-planetary-interaction.get_characters_character_id_planets
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: get-colony-layout
          description: EVE Online Get Colony Layout
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-planetary-interaction.get_characters_character_id_planets_planet_id
          with:
            planet_id: tools.planet_id
          outputParameters:
            - type: object
              mapping: $.
        - name: list-corporation-customs-offices
          description: EVE Online List Corporation Customs Offices
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-planetary-interaction.get_corporations_corporation_id_customs_offices
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: get-schematic-information
          description: EVE Online Get Schematic Information
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: eve-online-planetary-interaction.get_universe_schematics_schematic_id
          with:
            schematic_id: tools.schematic_id
          outputParameters:
            - type: object
              mapping: $.