Amazon Neptune · Capability

Amazon Neptune Neptune ML API — Inference Endpoints

Amazon Neptune Neptune ML API — Inference Endpoints. 4 operations. Lead operation: Amazon Neptune Create an ML Inference Endpoint. Self-contained Naftiko capability covering one Amazon Neptune business surface.

Run with Naftiko Amazon NeptuneInference Endpoints

What You Can Do

POST
Createinferenceendpoint — Amazon Neptune Create an ML Inference Endpoint
/v1/ml/endpoints
GET
Listinferenceendpoints — Amazon Neptune List ML Inference Endpoints
/v1/ml/endpoints
GET
Getinferenceendpointstatus — Amazon Neptune Get ML Inference Endpoint Status
/v1/ml/endpoints/{id}
DELETE
Deleteinferenceendpoint — Amazon Neptune Delete an ML Inference Endpoint
/v1/ml/endpoints/{id}

MCP Tools

amazon-neptune-create-ml-inference

Amazon Neptune Create an ML Inference Endpoint

amazon-neptune-list-ml-inference

Amazon Neptune List ML Inference Endpoints

read-only idempotent
amazon-neptune-get-ml-inference

Amazon Neptune Get ML Inference Endpoint Status

read-only idempotent
amazon-neptune-delete-ml-inference

Amazon Neptune Delete an ML Inference Endpoint

idempotent

Capability Spec

ml-inference-endpoints.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Neptune Neptune ML API — Inference Endpoints
  description: 'Amazon Neptune Neptune ML API — Inference Endpoints. 4 operations. Lead operation: Amazon Neptune Create an
    ML Inference Endpoint. Self-contained Naftiko capability covering one Amazon Neptune business surface.'
  tags:
  - Amazon Neptune
  - Inference Endpoints
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_NEPTUNE_API_KEY: AMAZON_NEPTUNE_API_KEY
capability:
  consumes:
  - type: http
    namespace: ml-inference-endpoints
    baseUri: https://{cluster-endpoint}:8182
    description: Amazon Neptune Neptune ML API — Inference Endpoints business capability. Self-contained, no shared references.
    resources:
    - name: ml-endpoints
      path: /ml/endpoints
      operations:
      - name: createinferenceendpoint
        method: POST
        description: Amazon Neptune Create an ML Inference Endpoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listinferenceendpoints
        method: GET
        description: Amazon Neptune List ML Inference Endpoints
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: maxItems
          in: query
          type: integer
        - name: neptuneIamRoleArn
          in: query
          type: string
    - name: ml-endpoints-id
      path: /ml/endpoints/{id}
      operations:
      - name: getinferenceendpointstatus
        method: GET
        description: Amazon Neptune Get ML Inference Endpoint Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the inference endpoint.
          required: true
        - name: neptuneIamRoleArn
          in: query
          type: string
      - name: deleteinferenceendpoint
        method: DELETE
        description: Amazon Neptune Delete an ML Inference Endpoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: clean
          in: query
          type: boolean
          description: Whether to delete all related S3 artifacts.
        - name: neptuneIamRoleArn
          in: query
          type: string
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_NEPTUNE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: ml-inference-endpoints-rest
    port: 8080
    description: REST adapter for Amazon Neptune Neptune ML API — Inference Endpoints. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/ml/endpoints
      name: ml-endpoints
      description: REST surface for ml-endpoints.
      operations:
      - method: POST
        name: createinferenceendpoint
        description: Amazon Neptune Create an ML Inference Endpoint
        call: ml-inference-endpoints.createinferenceendpoint
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listinferenceendpoints
        description: Amazon Neptune List ML Inference Endpoints
        call: ml-inference-endpoints.listinferenceendpoints
        with:
          maxItems: rest.maxItems
          neptuneIamRoleArn: rest.neptuneIamRoleArn
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ml/endpoints/{id}
      name: ml-endpoints-id
      description: REST surface for ml-endpoints-id.
      operations:
      - method: GET
        name: getinferenceendpointstatus
        description: Amazon Neptune Get ML Inference Endpoint Status
        call: ml-inference-endpoints.getinferenceendpointstatus
        with:
          id: rest.id
          neptuneIamRoleArn: rest.neptuneIamRoleArn
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteinferenceendpoint
        description: Amazon Neptune Delete an ML Inference Endpoint
        call: ml-inference-endpoints.deleteinferenceendpoint
        with:
          id: rest.id
          clean: rest.clean
          neptuneIamRoleArn: rest.neptuneIamRoleArn
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ml-inference-endpoints-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Neptune Neptune ML API — Inference Endpoints. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: amazon-neptune-create-ml-inference
      description: Amazon Neptune Create an ML Inference Endpoint
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: ml-inference-endpoints.createinferenceendpoint
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-neptune-list-ml-inference
      description: Amazon Neptune List ML Inference Endpoints
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ml-inference-endpoints.listinferenceendpoints
      with:
        maxItems: tools.maxItems
        neptuneIamRoleArn: tools.neptuneIamRoleArn
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-neptune-get-ml-inference
      description: Amazon Neptune Get ML Inference Endpoint Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ml-inference-endpoints.getinferenceendpointstatus
      with:
        id: tools.id
        neptuneIamRoleArn: tools.neptuneIamRoleArn
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-neptune-delete-ml-inference
      description: Amazon Neptune Delete an ML Inference Endpoint
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: ml-inference-endpoints.deleteinferenceendpoint
      with:
        id: tools.id
        clean: tools.clean
        neptuneIamRoleArn: tools.neptuneIamRoleArn
      outputParameters:
      - type: object
        mapping: $.