OpenStack · Capability

OpenStack Identity (Keystone) API v3 — Endpoints

OpenStack Identity (Keystone) API v3 — Endpoints. 2 operations. Lead operation: List service endpoints. Self-contained Naftiko capability covering one Openstack business surface.

Run with Naftiko OpenstackEndpoints

What You Can Do

GET
Listendpoints — List service endpoints
/v1/endpoints
POST
Createendpoint — Create endpoint
/v1/endpoints

MCP Tools

list-service-endpoints

List service endpoints

read-only idempotent
create-endpoint

Create endpoint

Capability Spec

keystone-endpoints.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: OpenStack Identity (Keystone) API v3 — Endpoints
  description: 'OpenStack Identity (Keystone) API v3 — Endpoints. 2 operations. Lead operation: List service endpoints. Self-contained
    Naftiko capability covering one Openstack business surface.'
  tags:
  - Openstack
  - Endpoints
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    OPENSTACK_API_KEY: OPENSTACK_API_KEY
capability:
  consumes:
  - type: http
    namespace: keystone-endpoints
    baseUri: https://{keystone-host}:5000/v3
    description: OpenStack Identity (Keystone) API v3 — Endpoints business capability. Self-contained, no shared references.
    resources:
    - name: endpoints
      path: /endpoints
      operations:
      - name: listendpoints
        method: GET
        description: List service endpoints
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createendpoint
        method: POST
        description: Create endpoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.OPENSTACK_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: keystone-endpoints-rest
    port: 8080
    description: REST adapter for OpenStack Identity (Keystone) API v3 — Endpoints. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/endpoints
      name: endpoints
      description: REST surface for endpoints.
      operations:
      - method: GET
        name: listendpoints
        description: List service endpoints
        call: keystone-endpoints.listendpoints
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createendpoint
        description: Create endpoint
        call: keystone-endpoints.createendpoint
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: keystone-endpoints-mcp
    port: 9090
    transport: http
    description: MCP adapter for OpenStack Identity (Keystone) API v3 — Endpoints. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-service-endpoints
      description: List service endpoints
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: keystone-endpoints.listendpoints
      outputParameters:
      - type: object
        mapping: $.
    - name: create-endpoint
      description: Create endpoint
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: keystone-endpoints.createendpoint
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.