Amazon Neptune · Capability

Amazon Neptune Neptune SPARQL API — Status

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

Run with Naftiko Amazon NeptuneStatus

What You Can Do

GET
Getsparqlquerystatus — Amazon Neptune Get the Status of All Running SPARQL Queries
/v1/sparql/status
GET
Getsparqlquerystatusbyid — Amazon Neptune Get the Status of a Specific SPARQL Query
/v1/sparql/status/{queryid}
DELETE
Cancelsparqlquery — Amazon Neptune Cancel a Running SPARQL Query
/v1/sparql/status/{queryid}

MCP Tools

amazon-neptune-get-status-all

Amazon Neptune Get the Status of All Running SPARQL Queries

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

Amazon Neptune Get the Status of a Specific SPARQL Query

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

Amazon Neptune Cancel a Running SPARQL Query

idempotent

Capability Spec

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