Tableau · Capability

Tableau REST API — Projects

Tableau REST API — Projects. 5 operations. Lead operation: Tableau Query Projects. Self-contained Naftiko capability covering one Tableau business surface.

Run with Naftiko TableauProjects

What You Can Do

GET
Queryprojects — Tableau Query Projects
/v1/sites/{site-id}/projects
POST
Createproject — Tableau Create Project
/v1/sites/{site-id}/projects
PUT
Updateproject — Tableau Update Project
/v1/sites/{site-id}/projects/{project-id}
DELETE
Deleteproject — Tableau Delete Project
/v1/sites/{site-id}/projects/{project-id}
GET
Querydefaultworkbookpermissions — Tableau Query Default Permissions for Workbooks
/v1/sites/{site-id}/projects/{project-id}/default-permissions/workbooks

MCP Tools

tableau-query-projects

Tableau Query Projects

read-only idempotent
tableau-create-project

Tableau Create Project

tableau-update-project

Tableau Update Project

idempotent
tableau-delete-project

Tableau Delete Project

idempotent
tableau-query-default-permissions-workbooks

Tableau Query Default Permissions for Workbooks

read-only idempotent

Capability Spec

rest-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tableau REST API — Projects
  description: 'Tableau REST API — Projects. 5 operations. Lead operation: Tableau Query Projects. Self-contained Naftiko
    capability covering one Tableau business surface.'
  tags:
  - Tableau
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TABLEAU_API_KEY: TABLEAU_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-projects
    baseUri: https://{server}/api/{api-version}
    description: Tableau REST API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: sites-site-id-projects
      path: /sites/{site-id}/projects
      operations:
      - name: queryprojects
        method: GET
        description: Tableau Query Projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createproject
        method: POST
        description: Tableau Create Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: sites-site-id-projects-project-id
      path: /sites/{site-id}/projects/{project-id}
      operations:
      - name: updateproject
        method: PUT
        description: Tableau Update Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteproject
        method: DELETE
        description: Tableau Delete Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: sites-site-id-projects-project-id-default-permissions-workbooks
      path: /sites/{site-id}/projects/{project-id}/default-permissions/workbooks
      operations:
      - name: querydefaultworkbookpermissions
        method: GET
        description: Tableau Query Default Permissions for Workbooks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-Tableau-Auth
      value: '{{env.TABLEAU_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: rest-projects-rest
    port: 8080
    description: REST adapter for Tableau REST API — Projects. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/sites/{site-id}/projects
      name: sites-site-id-projects
      description: REST surface for sites-site-id-projects.
      operations:
      - method: GET
        name: queryprojects
        description: Tableau Query Projects
        call: rest-projects.queryprojects
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Tableau Create Project
        call: rest-projects.createproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sites/{site-id}/projects/{project-id}
      name: sites-site-id-projects-project-id
      description: REST surface for sites-site-id-projects-project-id.
      operations:
      - method: PUT
        name: updateproject
        description: Tableau Update Project
        call: rest-projects.updateproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproject
        description: Tableau Delete Project
        call: rest-projects.deleteproject
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sites/{site-id}/projects/{project-id}/default-permissions/workbooks
      name: sites-site-id-projects-project-id-default-permissions-workbooks
      description: REST surface for sites-site-id-projects-project-id-default-permissions-workbooks.
      operations:
      - method: GET
        name: querydefaultworkbookpermissions
        description: Tableau Query Default Permissions for Workbooks
        call: rest-projects.querydefaultworkbookpermissions
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tableau REST API — Projects. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: tableau-query-projects
      description: Tableau Query Projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-projects.queryprojects
      outputParameters:
      - type: object
        mapping: $.
    - name: tableau-create-project
      description: Tableau Create Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-projects.createproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: tableau-update-project
      description: Tableau Update Project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: rest-projects.updateproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: tableau-delete-project
      description: Tableau Delete Project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: rest-projects.deleteproject
      outputParameters:
      - type: object
        mapping: $.
    - name: tableau-query-default-permissions-workbooks
      description: Tableau Query Default Permissions for Workbooks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-projects.querydefaultworkbookpermissions
      outputParameters:
      - type: object
        mapping: $.