Power-platform-skills list-connections
Lists Power Platform connections in the current environment. Use when you need a connection ID before adding a connector to a code app.
install
source · Clone the upstream repo
git clone https://github.com/microsoft/power-platform-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/microsoft/power-platform-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/code-apps/skills/list-connections" ~/.claude/skills/microsoft-power-platform-skills-list-connections && rm -rf "$T"
manifest:
plugins/code-apps/skills/list-connections/SKILL.mdsource content
📋 Shared Instructions: shared-instructions.md - Cross-cutting concerns (Windows CLI compatibility, memory bank, etc.).
List Connections
Lists all Power Platform connections in the default environment using the Power Platform CLI (
pac).
Workflow
- Fetch Connections → 2. Present Results
Step 1: Fetch Connections
pwsh -NoProfile -Command "pac connection list"
If
pac is not authenticated, tell the user to run pwsh -NoProfile -Command "pac auth create" and try again.
Other failures:
- Non-zero exit for any reason other than auth: Report the exact output. STOP.
- No output or timeout: Run
to verify pac can reach the environment, then retry once.pwsh -NoProfile -Command "pac env list"
Step 2: Present Results
Show the connection list to the user. The Connection ID is what goes into
-c <connection-id> when adding a data source.
If the needed connector is missing:
- Share the direct Connections URL using the active environment ID from context (from
or a prior step):power.config.json
→ + New connectionhttps://make.powerapps.com/environments/<environment-id>/connections - Search for and create the connector, then complete the sign-in/consent flow
- Re-run
to get the new connection ID/list-connections