<< All versions
Skill v1.0.1
currentAutomated scan100/100maxanatsko/mcp-engine-public/mcp-engine-query
+3 new
──Details
PublishedSeptember 5, 2026 at 10:36 PM
Content Hashsha256:05054549bafd9249...
Git SHA2a95092c45a3
Bump Typepatch
──Files
Files (1 file, 1.9 KB)
SKILL.md1.9 KBactive
SKILL.md · 33 lines · 1.9 KB
version: "1.0.1" name: mcp-engine-query description: Use when writing or fixing DAX query text, choosing between run_query operations, validating results, testing RLS access for roles, or discovering schema before querying. For diagnosing why a query is slow, use mcp-engine-dax-performance; for wrong values, unexpected blanks, or inflated totals, use mcp-engine-dax-debugging; to persist logic as measures, use mcp-engine-semantic-authoring.
PBI Query
Query authoring and execution through run_query.
Query workflow
- Discover schema first:
list_model{ "operation": "list", "spec": { "type": "tables" } }— one call per type (tables,columns,measures,relationships;spec.typetakes exactly one value) — or{ "operation": "search", "spec": { "query": "<name>", "mode": "name" } }for a named object. Never invent table, column, or measure names. - Pick the
run_queryoperation:
execute— results and validation queries.test_access— role-by-role RLS validation (requires top-levelqueryandspec.roles).analyzeandvertipaqbelong to performance work — hand off tomcp-engine-dax-performance.
- Keep the first
executescoped:TOPNof at most 100 rows with an explicitORDER BY, or a targeted aggregation. Expand only after the shape is confirmed correct. - Treat
nullin results as DAXBLANKsemantics, andtruncated: trueas a row cap, not missing data.
Author safely
- Read dax-query-guide before writing new or corrected query text — quoting, naming, and structure rules live there.
- Add
ORDER BYto any multi-row output so results are stable and comparable across runs.
Report results
After query work, report:
- The exact DAX text run and the
run_queryoperation used. - Row count returned and whether results were truncated.
- The answer to the user's question, stated separately from raw output.