Amazon Neptune · Capability

Amazon Neptune Neptune openCypher API — Status

Amazon Neptune Neptune openCypher API — Status. 3 operations. Lead operation: Amazon Neptune Get the Status of All Running OpenCypher Queries. Self-contained Naftiko capability covering one Amazon Neptune business surface.

Run with Naftiko Amazon NeptuneStatus

What You Can Do

GET
Getopencypherquerystatus — Amazon Neptune Get the Status of All Running OpenCypher Queries
/v1/opencypher/status
GET
Getopencypherquerystatusbyid — Amazon Neptune Get the Status of a Specific OpenCypher Query
/v1/opencypher/status/{queryid}
DELETE
Cancelopencypherquery — Amazon Neptune Cancel a Running OpenCypher Query
/v1/opencypher/status/{queryid}

MCP Tools

amazon-neptune-get-status-all

Amazon Neptune Get the Status of All Running OpenCypher Queries

read-only idempotent
amazon-neptune-get-status-specific

Amazon Neptune Get the Status of a Specific OpenCypher Query

read-only idempotent
amazon-neptune-cancel-running-opencypher

Amazon Neptune Cancel a Running OpenCypher Query

idempotent

Capability Spec

opencypher-status.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Neptune Neptune openCypher API — Status
  description: 'Amazon Neptune Neptune openCypher API — Status. 3 operations. Lead operation: Amazon Neptune Get the Status
    of All Running OpenCypher Queries. Self-contained Naftiko capability covering one Amazon Neptune business surface.'
  tags:
  - Amazon Neptune
  - Status
  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: opencypher-status
    baseUri: https://{cluster-endpoint}:8182
    description: Amazon Neptune Neptune openCypher API — Status business capability. Self-contained, no shared references.
    resources:
    - name: openCypher-status
      path: /openCypher/status
      operations:
      - name: getopencypherquerystatus
        method: GET
        description: Amazon Neptune Get the Status of All Running OpenCypher Queries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: openCypher-status-queryId
      path: /openCypher/status/{queryId}
      operations:
      - name: getopencypherquerystatusbyid
        method: GET
        description: Amazon Neptune Get the Status of a Specific OpenCypher Query
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: queryId
          in: path
          type: string
          description: The unique identifier of the openCypher query.
          required: true
      - name: cancelopencypherquery
        method: DELETE
        description: Amazon Neptune Cancel a Running OpenCypher Query
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: queryId
          in: path
          type: string
          description: The unique identifier of the openCypher query to cancel.
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_NEPTUNE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: opencypher-status-rest
    port: 8080
    description: REST adapter for Amazon Neptune Neptune openCypher API — Status. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/opencypher/status
      name: opencypher-status
      description: REST surface for openCypher-status.
      operations:
      - method: GET
        name: getopencypherquerystatus
        description: Amazon Neptune Get the Status of All Running OpenCypher Queries
        call: opencypher-status.getopencypherquerystatus
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/opencypher/status/{queryid}
      name: opencypher-status-queryid
      description: REST surface for openCypher-status-queryId.
      operations:
      - method: GET
        name: getopencypherquerystatusbyid
        description: Amazon Neptune Get the Status of a Specific OpenCypher Query
        call: opencypher-status.getopencypherquerystatusbyid
        with:
          queryId: rest.queryId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: cancelopencypherquery
        description: Amazon Neptune Cancel a Running OpenCypher Query
        call: opencypher-status.cancelopencypherquery
        with:
          queryId: rest.queryId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: opencypher-status-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Neptune Neptune openCypher API — Status. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: amazon-neptune-get-status-all
      description: Amazon Neptune Get the Status of All Running OpenCypher Queries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: opencypher-status.getopencypherquerystatus
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-neptune-get-status-specific
      description: Amazon Neptune Get the Status of a Specific OpenCypher Query
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: opencypher-status.getopencypherquerystatusbyid
      with:
        queryId: tools.queryId
      outputParameters:
      - type: object
        mapping: $.
    - name: amazon-neptune-cancel-running-opencypher
      description: Amazon Neptune Cancel a Running OpenCypher Query
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: opencypher-status.cancelopencypherquery
      with:
        queryId: tools.queryId
      outputParameters:
      - type: object
        mapping: $.