Pinecone · Capability

Pinecone Admin API — Organizations

Pinecone Admin API — Organizations. 4 operations. Lead operation: List organizations. Self-contained Naftiko capability covering one Pinecone business surface.

Run with Naftiko PineconeOrganizations

What You Can Do

GET
Listorganizations — List organizations
/v1/admin/organizations
GET
Fetchorganization — Get organization details
/v1/admin/organizations/{organization-id}
DELETE
Deleteorganization — Delete an organization
/v1/admin/organizations/{organization-id}
PATCH
Updateorganization — Update an organization
/v1/admin/organizations/{organization-id}

MCP Tools

list-organizations

List organizations

read-only idempotent
get-organization-details

Get organization details

read-only idempotent
delete-organization

Delete an organization

idempotent
update-organization

Update an organization

idempotent

Capability Spec

admin-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pinecone Admin API — Organizations
  description: 'Pinecone Admin API — Organizations. 4 operations. Lead operation: List organizations. Self-contained Naftiko
    capability covering one Pinecone business surface.'
  tags:
  - Pinecone
  - Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PINECONE_API_KEY: PINECONE_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-organizations
    baseUri: https://api.pinecone.io
    description: Pinecone Admin API — Organizations business capability. Self-contained, no shared references.
    resources:
    - name: admin-organizations
      path: /admin/organizations
      operations:
      - name: listorganizations
        method: GET
        description: List organizations
        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: admin-organizations-organization_id
      path: /admin/organizations/{organization_id}
      operations:
      - name: fetchorganization
        method: GET
        description: Get organization details
        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: organization_id
          in: path
          type: string
          description: Organization ID
          required: true
      - name: deleteorganization
        method: DELETE
        description: Delete an organization
        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: organization_id
          in: path
          type: string
          description: Organization ID
          required: true
      - name: updateorganization
        method: PATCH
        description: Update an organization
        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: organization_id
          in: path
          type: string
          description: Organization ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.PINECONE_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-organizations-rest
    port: 8080
    description: REST adapter for Pinecone Admin API — Organizations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/admin/organizations
      name: admin-organizations
      description: REST surface for admin-organizations.
      operations:
      - method: GET
        name: listorganizations
        description: List organizations
        call: admin-organizations.listorganizations
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/admin/organizations/{organization-id}
      name: admin-organizations-organization-id
      description: REST surface for admin-organizations-organization_id.
      operations:
      - method: GET
        name: fetchorganization
        description: Get organization details
        call: admin-organizations.fetchorganization
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
          organization_id: rest.organization_id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteorganization
        description: Delete an organization
        call: admin-organizations.deleteorganization
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
          organization_id: rest.organization_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateorganization
        description: Update an organization
        call: admin-organizations.updateorganization
        with:
          X-Pinecone-Api-Version: rest.X-Pinecone-Api-Version
          organization_id: rest.organization_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pinecone Admin API — Organizations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-organizations
      description: List organizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-organizations.listorganizations
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
      outputParameters:
      - type: object
        mapping: $.
    - name: get-organization-details
      description: Get organization details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-organizations.fetchorganization
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
        organization_id: tools.organization_id
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-organization
      description: Delete an organization
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: admin-organizations.deleteorganization
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
        organization_id: tools.organization_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-organization
      description: Update an organization
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: admin-organizations.updateorganization
      with:
        X-Pinecone-Api-Version: tools.X-Pinecone-Api-Version
        organization_id: tools.organization_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.