Microsoft Fabric · Capability

Microsoft Fabric REST API (Core) — Connections

Microsoft Fabric REST API (Core) — Connections. 2 operations. Lead operation: List connections. Self-contained Naftiko capability covering one Microsoft Fabric business surface.

Run with Naftiko Microsoft FabricConnections

What You Can Do

GET
Listconnections — List connections
/v1/connections
POST
Createconnection — Create connection
/v1/connections

MCP Tools

list-connections

List connections

read-only idempotent
create-connection

Create connection

Capability Spec

microsoft-fabric-connections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Fabric REST API (Core) — Connections
  description: 'Microsoft Fabric REST API (Core) — Connections. 2 operations. Lead operation: List connections. Self-contained
    Naftiko capability covering one Microsoft Fabric business surface.'
  tags:
  - Microsoft Fabric
  - Connections
  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-connections
    baseUri: https://api.fabric.microsoft.com/v1
    description: Microsoft Fabric REST API (Core) — Connections business capability. Self-contained, no shared references.
    resources:
    - name: connections
      path: /connections
      operations:
      - name: listconnections
        method: GET
        description: List connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createconnection
        method: POST
        description: Create connection
        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-connections-rest
    port: 8080
    description: REST adapter for Microsoft Fabric REST API (Core) — Connections. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/connections
      name: connections
      description: REST surface for connections.
      operations:
      - method: GET
        name: listconnections
        description: List connections
        call: microsoft-fabric-connections.listconnections
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createconnection
        description: Create connection
        call: microsoft-fabric-connections.createconnection
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-fabric-connections-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Fabric REST API (Core) — Connections. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-connections
      description: List connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-fabric-connections.listconnections
      outputParameters:
      - type: object
        mapping: $.
    - name: create-connection
      description: Create connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: microsoft-fabric-connections.createconnection
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.