Microsoft Project · Capability

Microsoft Project Online REST API — Lookup Tables

Microsoft Project Online REST API — Lookup Tables. 6 operations. Lead operation: Microsoft Project List Lookup Tables. Self-contained Naftiko capability covering one Microsoft Project business surface.

Run with Naftiko Microsoft ProjectLookup Tables

What You Can Do

GET
Listlookuptables — Microsoft Project List Lookup Tables
/v1/lookuptables
POST
Createlookuptable — Microsoft Project Create Lookup Table
/v1/lookuptables
GET
Getlookuptable — Microsoft Project Get Lookup Table
/v1/lookuptables-tableid
DELETE
Deletelookuptable — Microsoft Project Delete Lookup Table
/v1/lookuptables-tableid
GET
Listlookuptableentries — Microsoft Project List Lookup Table Entries
/v1/lookuptables-tableid/entries
POST
Createlookuptableentry — Microsoft Project Create Lookup Table Entry
/v1/lookuptables-tableid/entries

MCP Tools

microsoft-project-list-lookup-tables

Microsoft Project List Lookup Tables

read-only idempotent
microsoft-project-create-lookup-table

Microsoft Project Create Lookup Table

read-only
microsoft-project-get-lookup-table

Microsoft Project Get Lookup Table

read-only idempotent
microsoft-project-delete-lookup-table

Microsoft Project Delete Lookup Table

idempotent
microsoft-project-list-lookup-table

Microsoft Project List Lookup Table Entries

read-only idempotent
microsoft-project-create-lookup-table-2

Microsoft Project Create Lookup Table Entry

read-only

Capability Spec

rest-lookup-tables.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Project Online REST API — Lookup Tables
  description: 'Microsoft Project Online REST API — Lookup Tables. 6 operations. Lead operation: Microsoft Project List Lookup
    Tables. Self-contained Naftiko capability covering one Microsoft Project business surface.'
  tags:
  - Microsoft Project
  - Lookup Tables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_PROJECT_API_KEY: MICROSOFT_PROJECT_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-lookup-tables
    baseUri: https://{tenant}.sharepoint.com/sites/pwa/_api/ProjectServer
    description: Microsoft Project Online REST API — Lookup Tables business capability. Self-contained, no shared references.
    resources:
    - name: LookupTables
      path: /LookupTables
      operations:
      - name: listlookuptables
        method: GET
        description: Microsoft Project List Lookup Tables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createlookuptable
        method: POST
        description: Microsoft Project Create Lookup Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: LookupTables('{tableId}')
      path: /LookupTables('{tableId}')
      operations:
      - name: getlookuptable
        method: GET
        description: Microsoft Project Get Lookup Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletelookuptable
        method: DELETE
        description: Microsoft Project Delete Lookup Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: LookupTables('{tableId}')-Entries
      path: /LookupTables('{tableId}')/Entries
      operations:
      - name: listlookuptableentries
        method: GET
        description: Microsoft Project List Lookup Table Entries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createlookuptableentry
        method: POST
        description: Microsoft Project Create Lookup Table Entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_PROJECT_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-lookup-tables-rest
    port: 8080
    description: REST adapter for Microsoft Project Online REST API — Lookup Tables. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/lookuptables
      name: lookuptables
      description: REST surface for LookupTables.
      operations:
      - method: GET
        name: listlookuptables
        description: Microsoft Project List Lookup Tables
        call: rest-lookup-tables.listlookuptables
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createlookuptable
        description: Microsoft Project Create Lookup Table
        call: rest-lookup-tables.createlookuptable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/lookuptables-tableid
      name: lookuptables-tableid
      description: REST surface for LookupTables('{tableId}').
      operations:
      - method: GET
        name: getlookuptable
        description: Microsoft Project Get Lookup Table
        call: rest-lookup-tables.getlookuptable
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletelookuptable
        description: Microsoft Project Delete Lookup Table
        call: rest-lookup-tables.deletelookuptable
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/lookuptables-tableid/entries
      name: lookuptables-tableid-entries
      description: REST surface for LookupTables('{tableId}')-Entries.
      operations:
      - method: GET
        name: listlookuptableentries
        description: Microsoft Project List Lookup Table Entries
        call: rest-lookup-tables.listlookuptableentries
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createlookuptableentry
        description: Microsoft Project Create Lookup Table Entry
        call: rest-lookup-tables.createlookuptableentry
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-lookup-tables-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Project Online REST API — Lookup Tables. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: microsoft-project-list-lookup-tables
      description: Microsoft Project List Lookup Tables
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-lookup-tables.listlookuptables
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-project-create-lookup-table
      description: Microsoft Project Create Lookup Table
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: rest-lookup-tables.createlookuptable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-project-get-lookup-table
      description: Microsoft Project Get Lookup Table
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-lookup-tables.getlookuptable
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-project-delete-lookup-table
      description: Microsoft Project Delete Lookup Table
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: rest-lookup-tables.deletelookuptable
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-project-list-lookup-table
      description: Microsoft Project List Lookup Table Entries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-lookup-tables.listlookuptableentries
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-project-create-lookup-table-2
      description: Microsoft Project Create Lookup Table Entry
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: rest-lookup-tables.createlookuptableentry
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.