Vanta · Capability

Vanta API — Integrations

Vanta API — Integrations. 2 operations. Lead operation: List Integrations. Self-contained Naftiko capability covering one Vanta business surface.

Run with Naftiko VantaIntegrations

What You Can Do

GET
Listintegrations — List Integrations
/v1/v1/integrations
POST
Createcustomresource — Create Custom Resource
/v1/v1/resources/custom

MCP Tools

list-integrations

List Integrations

read-only idempotent
create-custom-resource

Create Custom Resource

Capability Spec

vanta-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Vanta API — Integrations
  description: 'Vanta API — Integrations. 2 operations. Lead operation: List Integrations. Self-contained Naftiko capability
    covering one Vanta business surface.'
  tags:
  - Vanta
  - Integrations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VANTA_API_KEY: VANTA_API_KEY
capability:
  consumes:
  - type: http
    namespace: vanta-integrations
    baseUri: https://api.vanta.com
    description: Vanta API — Integrations business capability. Self-contained, no shared references.
    resources:
    - name: v1-integrations
      path: /v1/integrations
      operations:
      - name: listintegrations
        method: GET
        description: List Integrations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-resources-custom
      path: /v1/resources/custom
      operations:
      - name: createcustomresource
        method: POST
        description: Create Custom Resource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.VANTA_API_KEY}}'
  exposes:
  - type: rest
    namespace: vanta-integrations-rest
    port: 8080
    description: REST adapter for Vanta API — Integrations. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/integrations
      name: v1-integrations
      description: REST surface for v1-integrations.
      operations:
      - method: GET
        name: listintegrations
        description: List Integrations
        call: vanta-integrations.listintegrations
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/resources/custom
      name: v1-resources-custom
      description: REST surface for v1-resources-custom.
      operations:
      - method: POST
        name: createcustomresource
        description: Create Custom Resource
        call: vanta-integrations.createcustomresource
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vanta-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Vanta API — Integrations. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-integrations
      description: List Integrations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vanta-integrations.listintegrations
      outputParameters:
      - type: object
        mapping: $.
    - name: create-custom-resource
      description: Create Custom Resource
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: vanta-integrations.createcustomresource
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.