Microsoft Fabric · Capability

Microsoft Fabric REST API (Core) — Items

Microsoft Fabric REST API (Core) — Items. 9 operations. Lead operation: List items. Self-contained Naftiko capability covering one Microsoft Fabric business surface.

Run with Naftiko Microsoft FabricItems

What You Can Do

GET
Listitems — List items
/v1/workspaces/{workspaceid}/items
POST
Createitem — Create item
/v1/workspaces/{workspaceid}/items
GET
Getitem — Get item
/v1/workspaces/{workspaceid}/items/{itemid}
PATCH
Updateitem — Update item
/v1/workspaces/{workspaceid}/items/{itemid}
DELETE
Deleteitem — Delete item
/v1/workspaces/{workspaceid}/items/{itemid}
GET
Listitemconnections — List item connections
/v1/workspaces/{workspaceid}/items/{itemid}/connections
POST
Getitemdefinition — Get item definition
/v1/workspaces/{workspaceid}/items/{itemid}/getdefinition
POST
Moveitem — Move item
/v1/workspaces/{workspaceid}/items/{itemid}/move
POST
Updateitemdefinition — Update item definition
/v1/workspaces/{workspaceid}/items/{itemid}/updatedefinition

MCP Tools

list-items

List items

read-only idempotent
create-item

Create item

get-item

Get item

read-only idempotent
update-item

Update item

idempotent
delete-item

Delete item

idempotent
list-item-connections

List item connections

read-only idempotent
get-item-definition

Get item definition

read-only
move-item

Move item

update-item-definition

Update item definition

Capability Spec

microsoft-fabric-items.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Fabric REST API (Core) — Items
  description: 'Microsoft Fabric REST API (Core) — Items. 9 operations. Lead operation: List items. Self-contained Naftiko
    capability covering one Microsoft Fabric business surface.'
  tags:
  - Microsoft Fabric
  - Items
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_FABRIC_API_KEY: MICROSOFT_FABRIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: microsoft-fabric-items
    baseUri: https://api.fabric.microsoft.com/v1
    description: Microsoft Fabric REST API (Core) — Items business capability. Self-contained, no shared references.
    resources:
    - name: workspaces-workspaceId-items
      path: /workspaces/{workspaceId}/items
      operations:
      - name: listitems
        method: GET
        description: List items
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createitem
        method: POST
        description: Create item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: workspaces-workspaceId-items-itemId
      path: /workspaces/{workspaceId}/items/{itemId}
      operations:
      - name: getitem
        method: GET
        description: Get item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateitem
        method: PATCH
        description: Update item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteitem
        method: DELETE
        description: Delete item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: workspaces-workspaceId-items-itemId-connections
      path: /workspaces/{workspaceId}/items/{itemId}/connections
      operations:
      - name: listitemconnections
        method: GET
        description: List item connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: workspaces-workspaceId-items-itemId-getDefinition
      path: /workspaces/{workspaceId}/items/{itemId}/getDefinition
      operations:
      - name: getitemdefinition
        method: POST
        description: Get item definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: workspaces-workspaceId-items-itemId-move
      path: /workspaces/{workspaceId}/items/{itemId}/move
      operations:
      - name: moveitem
        method: POST
        description: Move item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: workspaces-workspaceId-items-itemId-updateDefinition
      path: /workspaces/{workspaceId}/items/{itemId}/updateDefinition
      operations:
      - name: updateitemdefinition
        method: POST
        description: Update item definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_FABRIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: microsoft-fabric-items-rest
    port: 8080
    description: REST adapter for Microsoft Fabric REST API (Core) — Items. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/workspaces/{workspaceid}/items
      name: workspaces-workspaceid-items
      description: REST surface for workspaces-workspaceId-items.
      operations:
      - method: GET
        name: listitems
        description: List items
        call: microsoft-fabric-items.listitems
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createitem
        description: Create item
        call: microsoft-fabric-items.createitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}/items/{itemid}
      name: workspaces-workspaceid-items-itemid
      description: REST surface for workspaces-workspaceId-items-itemId.
      operations:
      - method: GET
        name: getitem
        description: Get item
        call: microsoft-fabric-items.getitem
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateitem
        description: Update item
        call: microsoft-fabric-items.updateitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteitem
        description: Delete item
        call: microsoft-fabric-items.deleteitem
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}/items/{itemid}/connections
      name: workspaces-workspaceid-items-itemid-connections
      description: REST surface for workspaces-workspaceId-items-itemId-connections.
      operations:
      - method: GET
        name: listitemconnections
        description: List item connections
        call: microsoft-fabric-items.listitemconnections
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}/items/{itemid}/getdefinition
      name: workspaces-workspaceid-items-itemid-getdefinition
      description: REST surface for workspaces-workspaceId-items-itemId-getDefinition.
      operations:
      - method: POST
        name: getitemdefinition
        description: Get item definition
        call: microsoft-fabric-items.getitemdefinition
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}/items/{itemid}/move
      name: workspaces-workspaceid-items-itemid-move
      description: REST surface for workspaces-workspaceId-items-itemId-move.
      operations:
      - method: POST
        name: moveitem
        description: Move item
        call: microsoft-fabric-items.moveitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}/items/{itemid}/updatedefinition
      name: workspaces-workspaceid-items-itemid-updatedefinition
      description: REST surface for workspaces-workspaceId-items-itemId-updateDefinition.
      operations:
      - method: POST
        name: updateitemdefinition
        description: Update item definition
        call: microsoft-fabric-items.updateitemdefinition
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-fabric-items-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Fabric REST API (Core) — Items. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-items
      description: List items
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-fabric-items.listitems
      outputParameters:
      - type: object
        mapping: $.
    - name: create-item
      description: Create item
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: microsoft-fabric-items.createitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-item
      description: Get item
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-fabric-items.getitem
      outputParameters:
      - type: object
        mapping: $.
    - name: update-item
      description: Update item
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: microsoft-fabric-items.updateitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-item
      description: Delete item
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: microsoft-fabric-items.deleteitem
      outputParameters:
      - type: object
        mapping: $.
    - name: list-item-connections
      description: List item connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-fabric-items.listitemconnections
      outputParameters:
      - type: object
        mapping: $.
    - name: get-item-definition
      description: Get item definition
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: microsoft-fabric-items.getitemdefinition
      outputParameters:
      - type: object
        mapping: $.
    - name: move-item
      description: Move item
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: microsoft-fabric-items.moveitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-item-definition
      description: Update item definition
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: microsoft-fabric-items.updateitemdefinition
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.