Amazon Neptune · Capability

Amazon Neptune Neptune Gremlin API — Status

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

Run with Naftiko Amazon NeptuneStatus

What You Can Do

GET
Getgremlinquerystatus — Amazon Neptune Get the Status of All Running Gremlin Queries
/v1/gremlin/status
GET
Getgremlinquerystatusbyid — Amazon Neptune Get the Status of a Specific Gremlin Query
/v1/gremlin/status/{queryid}
DELETE
Cancelgremlinquery — Amazon Neptune Cancel a Running Gremlin Query
/v1/gremlin/status/{queryid}

MCP Tools

amazon-neptune-get-status-all

Amazon Neptune Get the Status of All Running Gremlin Queries

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

Amazon Neptune Get the Status of a Specific Gremlin Query

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

Amazon Neptune Cancel a Running Gremlin Query

idempotent

Capability Spec

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