Azure Log Analytics · Capability

Azure Log Analytics Management API — Tables

Azure Log Analytics Management API — Tables. 4 operations. Lead operation: Azure Log Analytics List Tables. Self-contained Naftiko capability covering one Azure Log Analytics business surface.

Run with Naftiko Azure Log AnalyticsTables

What You Can Do

GET
Listtables — Azure Log Analytics List Tables
/v1/subscriptions/{subscriptionid}/resourcegroups/{resourcegroupname}/providers/microsoft-operationalinsights/workspaces/{workspacename}/tables
GET
Gettable — Azure Log Analytics Get Table
/v1/subscriptions/{subscriptionid}/resourcegroups/{resourcegroupname}/providers/microsoft-operationalinsights/workspaces/{workspacename}/tables/{tablename}
PUT
Createorupdatetable — Azure Log Analytics Create or Update Table
/v1/subscriptions/{subscriptionid}/resourcegroups/{resourcegroupname}/providers/microsoft-operationalinsights/workspaces/{workspacename}/tables/{tablename}
DELETE
Deletetable — Azure Log Analytics Delete Table
/v1/subscriptions/{subscriptionid}/resourcegroups/{resourcegroupname}/providers/microsoft-operationalinsights/workspaces/{workspacename}/tables/{tablename}

MCP Tools

azure-log-analytics-list-tables

Azure Log Analytics List Tables

read-only idempotent
azure-log-analytics-get-table

Azure Log Analytics Get Table

read-only idempotent
azure-log-analytics-create-update

Azure Log Analytics Create or Update Table

idempotent
azure-log-analytics-delete-table

Azure Log Analytics Delete Table

idempotent

Capability Spec

management-tables.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Azure Log Analytics Management API — Tables
  description: 'Azure Log Analytics Management API — Tables. 4 operations. Lead operation: Azure Log Analytics List Tables.
    Self-contained Naftiko capability covering one Azure Log Analytics business surface.'
  tags:
  - Azure Log Analytics
  - Tables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AZURE_LOG_ANALYTICS_API_KEY: AZURE_LOG_ANALYTICS_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-tables
    baseUri: https://management.azure.com
    description: Azure Log Analytics Management API — Tables business capability. Self-contained, no shared references.
    resources:
    - name: subscriptions-subscriptionId-resourcegroups-resourceGroupName-providers-Microsof
      path: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/tables
      operations:
      - name: listtables
        method: GET
        description: Azure Log Analytics List Tables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: subscriptions-subscriptionId-resourcegroups-resourceGroupName-providers-Microsof
      path: /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/tables/{tableName}
      operations:
      - name: gettable
        method: GET
        description: Azure Log Analytics Get Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tableName
          in: path
          type: string
          description: The name of the table.
          required: true
      - name: createorupdatetable
        method: PUT
        description: Azure Log Analytics Create or Update Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tableName
          in: path
          type: string
          description: The name of the table.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletetable
        method: DELETE
        description: Azure Log Analytics Delete Table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tableName
          in: path
          type: string
          description: The name of the table.
          required: true
    authentication:
      type: bearer
      token: '{{env.AZURE_LOG_ANALYTICS_API_KEY}}'
  exposes:
  - type: rest
    namespace: management-tables-rest
    port: 8080
    description: REST adapter for Azure Log Analytics Management API — Tables. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/subscriptions/{subscriptionid}/resourcegroups/{resourcegroupname}/providers/microsoft-operationalinsights/workspaces/{workspacename}/tables
      name: subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsof
      description: REST surface for subscriptions-subscriptionId-resourcegroups-resourceGroupName-providers-Microsof.
      operations:
      - method: GET
        name: listtables
        description: Azure Log Analytics List Tables
        call: management-tables.listtables
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/subscriptions/{subscriptionid}/resourcegroups/{resourcegroupname}/providers/microsoft-operationalinsights/workspaces/{workspacename}/tables/{tablename}
      name: subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsof
      description: REST surface for subscriptions-subscriptionId-resourcegroups-resourceGroupName-providers-Microsof.
      operations:
      - method: GET
        name: gettable
        description: Azure Log Analytics Get Table
        call: management-tables.gettable
        with:
          tableName: rest.tableName
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: createorupdatetable
        description: Azure Log Analytics Create or Update Table
        call: management-tables.createorupdatetable
        with:
          tableName: rest.tableName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletetable
        description: Azure Log Analytics Delete Table
        call: management-tables.deletetable
        with:
          tableName: rest.tableName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-tables-mcp
    port: 9090
    transport: http
    description: MCP adapter for Azure Log Analytics Management API — Tables. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: azure-log-analytics-list-tables
      description: Azure Log Analytics List Tables
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-tables.listtables
      outputParameters:
      - type: object
        mapping: $.
    - name: azure-log-analytics-get-table
      description: Azure Log Analytics Get Table
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-tables.gettable
      with:
        tableName: tools.tableName
      outputParameters:
      - type: object
        mapping: $.
    - name: azure-log-analytics-create-update
      description: Azure Log Analytics Create or Update Table
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: management-tables.createorupdatetable
      with:
        tableName: tools.tableName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: azure-log-analytics-delete-table
      description: Azure Log Analytics Delete Table
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: management-tables.deletetable
      with:
        tableName: tools.tableName
      outputParameters:
      - type: object
        mapping: $.