Pinecone · Capability

Pinecone Assistant Control Plane API — Manage Assistants

Pinecone Assistant Control Plane API — Manage Assistants. 5 operations. Lead operation: List assistants. Self-contained Naftiko capability covering one Pinecone business surface.

Run with Naftiko PineconeManage Assistants

What You Can Do

GET
Listassistants — List assistants
/v1/assistants
POST
Createassistant — Create an assistant
/v1/assistants
GET
Getassistant — Check assistant status
/v1/assistants/{assistant-name}
DELETE
Deleteassistant — Delete an assistant
/v1/assistants/{assistant-name}
PATCH
Updateassistant — Update an assistant
/v1/assistants/{assistant-name}

MCP Tools

list-assistants

List assistants

read-only idempotent
create-assistant

Create an assistant

check-assistant-status

Check assistant status

read-only idempotent
delete-assistant

Delete an assistant

idempotent
update-assistant

Update an assistant

idempotent

Capability Spec

assistant-control-manage-assistants.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pinecone Assistant Control Plane API — Manage Assistants
  description: 'Pinecone Assistant Control Plane API — Manage Assistants. 5 operations. Lead operation: List assistants. Self-contained
    Naftiko capability covering one Pinecone business surface.'
  tags:
  - Pinecone
  - Manage Assistants
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PINECONE_API_KEY: PINECONE_API_KEY
capability:
  consumes:
  - type: http
    namespace: assistant-control-manage-assistants
    baseUri: https://api.pinecone.io/assistant
    description: Pinecone Assistant Control Plane API — Manage Assistants business capability. Self-contained, no shared references.
    resources:
    - name: assistants
      path: /assistants
      operations:
      - name: listassistants
        method: GET
        description: List assistants
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Pinecone-Api-Version
          in: header
          type: string
          description: Required date-based version header
          required: true
      - name: createassistant
        method: POST
        description: Create an assistant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Pinecone-Api-Version
          in: header
          type: string
          description: Required date-based version header
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: assistants-assistant_name
      path: /assistants/{assistant_name}
      operations:
      - name: getassistant
        method: GET
        description: Check assistant status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Pinecone-Api-Version
          in: header
          type: string
          description: Required date-based version header
          required: true
        - name: assistant_name
          in: path
          type: string
          description: The name of the assistant to get a status on.
          required: true
      - name: deleteassistant
        method: DELETE
        description: Delete an assistant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Pinecone-Api-Version
          in: header
          type: string
          description: Required date-based version header
          required: true
        - name: assistant_name
          in: path
          type: string
          description: The name of the assistant to delete.
          required: true
      - name: updateassistant
        method: PATCH
        description: Update an assistant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Pinecone-Api-Version
          in: header
          type: string
          description: Required date-based version header
          required: true
        - name: assistant_name
          in: path
          type: string
          description: The name of the assistant to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Api-Key
      value: '{{env.PINECONE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: assistant-control-manage-assistants-rest
    port: 8080
    description: REST adapter for Pinecone Assistant Control Plane API — Manage Assistants. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/assistants
      name: assistants
      description: REST surface for assistants.
      operations:
      - method: GET
        name: listassistants
        description: List assistants
        call: assistant-control-manage-assistants.listassistants
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createassistant
        description: Create an assistant
        call: assistant-control-manage-assistants.createassistant
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/assistants/{assistant-name}
      name: assistants-assistant-name
      description: REST surface for assistants-assistant_name.
      operations:
      - method: GET
        name: getassistant
        description: Check assistant status
        call: assistant-control-manage-assistants.getassistant
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
          assistant_name: rest.assistant_name
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteassistant
        description: Delete an assistant
        call: assistant-control-manage-assistants.deleteassistant
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
          assistant_name: rest.assistant_name
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateassistant
        description: Update an assistant
        call: assistant-control-manage-assistants.updateassistant
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
          assistant_name: rest.assistant_name
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: assistant-control-manage-assistants-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pinecone Assistant Control Plane API — Manage Assistants. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-assistants
      description: List assistants
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: assistant-control-manage-assistants.listassistants
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
      outputParameters:
      - type: object
        mapping: $.
    - name: create-assistant
      description: Create an assistant
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: assistant-control-manage-assistants.createassistant
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: check-assistant-status
      description: Check assistant status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: assistant-control-manage-assistants.getassistant
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
        assistant_name: tools.assistant_name
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-assistant
      description: Delete an assistant
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: assistant-control-manage-assistants.deleteassistant
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
        assistant_name: tools.assistant_name
      outputParameters:
      - type: object
        mapping: $.
    - name: update-assistant
      description: Update an assistant
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: assistant-control-manage-assistants.updateassistant
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
        assistant_name: tools.assistant_name
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.