llamaindex · Capability

LlamaIndex LlamaCloud API — Projects

LlamaIndex LlamaCloud API — Projects. 3 operations. Lead operation: List projects. Self-contained Naftiko capability covering one Llamaindex business surface.

Run with Naftiko LlamaindexProjects

What You Can Do

GET
Listprojects — List projects
/v1/projects
POST
Createproject — Create a project
/v1/projects
GET
Getproject — Get a project
/v1/projects/{projectid}

MCP Tools

list-projects

List projects

read-only idempotent
create-project

Create a project

get-project

Get a project

read-only idempotent

Capability Spec

llamacloud-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LlamaIndex LlamaCloud API — Projects
  description: 'LlamaIndex LlamaCloud API — Projects. 3 operations. Lead operation: List projects. Self-contained Naftiko
    capability covering one Llamaindex business surface.'
  tags:
  - Llamaindex
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LLAMAINDEX_API_KEY: LLAMAINDEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: llamacloud-projects
    baseUri: https://api.cloud.llamaindex.ai/api/v1
    description: LlamaIndex LlamaCloud API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: projects
      path: /projects
      operations:
      - name: listprojects
        method: GET
        description: List projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createproject
        method: POST
        description: Create a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: projects-projectId
      path: /projects/{projectId}
      operations:
      - name: getproject
        method: GET
        description: Get a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.LLAMAINDEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: llamacloud-projects-rest
    port: 8080
    description: REST adapter for LlamaIndex LlamaCloud API — Projects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects
      name: projects
      description: REST surface for projects.
      operations:
      - method: GET
        name: listprojects
        description: List projects
        call: llamacloud-projects.listprojects
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Create a project
        call: llamacloud-projects.createproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectid}
      name: projects-projectid
      description: REST surface for projects-projectId.
      operations:
      - method: GET
        name: getproject
        description: Get a project
        call: llamacloud-projects.getproject
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: llamacloud-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for LlamaIndex LlamaCloud API — Projects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-projects
      description: List projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: llamacloud-projects.listprojects
      outputParameters:
      - type: object
        mapping: $.
    - name: create-project
      description: Create a project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: llamacloud-projects.createproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-project
      description: Get a project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: llamacloud-projects.getproject
      outputParameters:
      - type: object
        mapping: $.