mcpbeat

Log Analytics Workspace Queryer

azure/log-analytics-workspace-queryer

Uses REST API to query Log Analytics workspaces. Use this skill when you need to query a Log Analytics workspace, for example, to check if the table exists in the workspace, or to validate an ASIM parser.

678 tokens
context cost
the whole folder, loaded on every use
2
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
6042
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Azure/Azure-Sentinel --skill log-analytics-workspace-queryer

What comes with it

1 623 bytes besides the instruction
scripts/queryLogAnalytics.ps1

The instruction itself

4 sections, as written by the author

Query Log Analytics workspace using REST API

Inputs

This skill requires two inputs. This information should come from another skill and you do not need to ask the user for it.

  • KQL query — the query to run against the Log Analytics workspace.
  • Workspace ID — the GUID of the Log Analytics workspace.

Step 1: Run the query

Execute the PowerShell script at scripts/queryLogAnalytics.ps1 (relative to this skill's directory) by passing the workspace ID and KQL query as parameters:

.\scripts\queryLogAnalytics.ps1 -WorkspaceId "<workspaceId>" -Query "<KQL query>"

Step 2: Return results

Return the full query output to the calling skill. The calling skill is responsible for interpreting and filtering the results (e.g., filtering for Error or Warning patterns during ASIM validation).

How to use it

Copy the folder

Take azure/log-analytics-workspace-queryer from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.