Gremlin · Capability

Gremlin API — providers

Gremlin API — providers. 4 operations. Lead operation: Returns a list of supported infrastructure providers.. Self-contained Naftiko capability covering one Gremlin business surface.

Run with Naftiko Gremlinproviders

What You Can Do

GET
Providers — Returns a list of supported infrastructure providers.
/v1/providers
GET
Getallproviders — Returns the list of supported services for all Providers
/v1/providers/all
GET
Aws — Returns the list of supported AWS services.
/v1/providers/aws
GET
Getprovider — Returns the list of supported services for a given Provider
/v1/providers/{provider}

MCP Tools

returns-list-supported-infrastructure-providers

Returns a list of supported infrastructure providers.

read-only idempotent
returns-list-supported-services-all

Returns the list of supported services for all Providers

read-only idempotent
returns-list-supported-aws-services

Returns the list of supported AWS services.

read-only idempotent
returns-list-supported-services-given

Returns the list of supported services for a given Provider

read-only idempotent

Capability Spec

gremlin-providers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Gremlin API — providers
  description: 'Gremlin API — providers. 4 operations. Lead operation: Returns a list of supported infrastructure providers..
    Self-contained Naftiko capability covering one Gremlin business surface.'
  tags:
  - Gremlin
  - providers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GREMLIN_API_KEY: GREMLIN_API_KEY
capability:
  consumes:
  - type: http
    namespace: gremlin-providers
    baseUri: https://api.gremlin.com/v1
    description: Gremlin API — providers business capability. Self-contained, no shared references.
    resources:
    - name: providers
      path: /providers
      operations:
      - name: providers
        method: GET
        description: Returns a list of supported infrastructure providers.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: providers-all
      path: /providers/all
      operations:
      - name: getallproviders
        method: GET
        description: Returns the list of supported services for all Providers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: providers-aws
      path: /providers/aws
      operations:
      - name: aws
        method: GET
        description: Returns the list of supported AWS services.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: providers-provider
      path: /providers/{provider}
      operations:
      - name: getprovider
        method: GET
        description: Returns the list of supported services for a given Provider
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: provider
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: gremlin-providers-rest
    port: 8080
    description: REST adapter for Gremlin API — providers. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/providers
      name: providers
      description: REST surface for providers.
      operations:
      - method: GET
        name: providers
        description: Returns a list of supported infrastructure providers.
        call: gremlin-providers.providers
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/providers/all
      name: providers-all
      description: REST surface for providers-all.
      operations:
      - method: GET
        name: getallproviders
        description: Returns the list of supported services for all Providers
        call: gremlin-providers.getallproviders
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/providers/aws
      name: providers-aws
      description: REST surface for providers-aws.
      operations:
      - method: GET
        name: aws
        description: Returns the list of supported AWS services.
        call: gremlin-providers.aws
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/providers/{provider}
      name: providers-provider
      description: REST surface for providers-provider.
      operations:
      - method: GET
        name: getprovider
        description: Returns the list of supported services for a given Provider
        call: gremlin-providers.getprovider
        with:
          provider: rest.provider
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: gremlin-providers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Gremlin API — providers. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: returns-list-supported-infrastructure-providers
      description: Returns a list of supported infrastructure providers.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gremlin-providers.providers
      outputParameters:
      - type: object
        mapping: $.
    - name: returns-list-supported-services-all
      description: Returns the list of supported services for all Providers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gremlin-providers.getallproviders
      outputParameters:
      - type: object
        mapping: $.
    - name: returns-list-supported-aws-services
      description: Returns the list of supported AWS services.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gremlin-providers.aws
      outputParameters:
      - type: object
        mapping: $.
    - name: returns-list-supported-services-given
      description: Returns the list of supported services for a given Provider
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: gremlin-providers.getprovider
      with:
        provider: tools.provider
      outputParameters:
      - type: object
        mapping: $.