Agent Skills
SemanticOps MCP publishes reusable agent skills through the public maxanatsko/mcp-engine-public repository. Install them with the Vercel skills CLI when you want your coding agent to use SemanticOps MCP-specific workflows for Power BI model setup, querying, authoring, testing, security, and AI readiness.
Guided install
Use the guided installer unless you already know the exact skill, agent, and install scope you want. It detects installed agents, asks where to install, and lets you choose the skills interactively.
npx skills add maxanatsko/mcp-engine-public
Preview available skills
npx skills add maxanatsko/mcp-engine-public --list
Scripted install
Use explicit flags for repeatable setup, CI, onboarding scripts, or locked-down environments.
Install the DAX query skill globally for Codex:
npx skills add maxanatsko/mcp-engine-public --skill mcp-engine-query -g -a codex
Install all SemanticOps MCP skills globally for Codex:
npx skills add maxanatsko/mcp-engine-public --skill '*' -g -a codex
Available skills
mcp-engine-bootstrap: connect to the right model and recover SemanticOps MCP sessions.mcp-engine-onboarding: plan setup, preferences, policies, test packs, and safe defaults.mcp-engine-query: write, scope, execute, and analyze DAX queries.mcp-engine-schema-authoring: plan and apply table, column, relationship, hierarchy, calendar, partition, and refresh changes.mcp-engine-semantic-authoring: author measures, calculation groups, named expressions, DAX UDFs, parameters, and semantic model metadata.mcp-engine-security-governance: handle RLS, OLS, perspectives, policies, masking, and audit workflows.mcp-engine-testing-changes: validate changes with tests, baselines, dependencies, snapshots, and checkpoints.mcp-engine-ai-readiness: assess Copilot, Fabric data agent, and natural-language Q&A readiness.
Target a specific agent
Use -a to choose another supported agent. For example:
npx skills add maxanatsko/mcp-engine-public --skill mcp-engine-query -g -a claude-code
Use the Vercel skills CLI docs for the current list of supported agent names and install options.