Power Platform Pipeline Server
FreeNot checkedExposes Power Platform Pipeline operations as MCP tools for Copilot Studio agents, enabling pipeline discovery, deployments, approvals, and configuration manage
About
Exposes Power Platform Pipeline operations as MCP tools for Copilot Studio agents, enabling pipeline discovery, deployments, approvals, and configuration management.
README
A Model Context Protocol (MCP) server that exposes Power Platform Pipeline operations as tools for Copilot Studio agents and any MCP-compatible client.
Features
| Category | Tools |
|---|---|
| Pipeline Discovery | list_pipelines, get_pipeline_stages |
| Deployments | deploy_solution, get_deployment_status, get_deployment_history |
| Approvals | list_pending_approvals, approve_deployment, reject_deployment |
| Configuration | list_environment_variables, set_environment_variable, list_connection_references, update_connection_reference |
Architecture
Copilot Studio / MCP Client
│ HTTP (Streamable HTTP transport)
▼
Express HTTP Server (POST /mcp, GET /mcp SSE, DELETE /mcp)
│
McpServer (@modelcontextprotocol/sdk)
│
┌─────┴────────────────────────┐
│ │
Dataverse Web API PAC CLI
(Axios + MSAL OAuth2) (child_process)
Prerequisites
- Node.js 20+
- PAC CLI installed and on
PATH— required fordeploy_solution. Install via:dotnet tool install --global Microsoft.PowerApps.CLI.Tool - Entra ID App Registration with:
- Client credentials (client ID + secret)
- API permissions:
Dynamics CRM → user_impersonation(delegated) or assigned a system administrator role in the target environment as an application user - The same service principal is used for all Dataverse calls AND the
UpdateApprovalStatusapproval action — this is a Microsoft requirement
Setup
1. Clone and install
git clone https://github.com/MattCollins-Jones/power-platform-pipeline-mcp.git
cd power-platform-pipeline-mcp
npm install
2. Configure environment variables
cp .env.example .env
# Edit .env with your values
| Variable | Description |
|---|---|
AZURE_CLIENT_ID |
App registration client ID |
AZURE_CLIENT_SECRET |
App registration client secret |
AZURE_TENANT_ID |
Entra ID tenant ID |
DATAVERSE_URL |
Environment root URL, e.g. https://yourorg.crm.dynamics.com |
PORT |
Port to listen on (default: 3000) |
3. Authenticate PAC CLI (development)
For local development, authenticate the PAC CLI manually before starting the server:
pac auth create \
--kind ServicePrincipal \
--applicationId $AZURE_CLIENT_ID \
--clientSecret $AZURE_CLIENT_SECRET \
--tenant $AZURE_TENANT_ID \
--environment $DATAVERSE_URL
4. Build and start
npm run build
npm start
Or for development with hot-reload:
npm run dev
Docker
Build and run with Docker (PAC CLI auth is handled by docker-entrypoint.sh):
docker build -t pp-pipeline-mcp .
docker run -p 3000:3000 \
-e AZURE_CLIENT_ID=... \
-e AZURE_CLIENT_SECRET=... \
-e AZURE_TENANT_ID=... \
-e DATAVERSE_URL=https://yourorg.crm.dynamics.com \
pp-pipeline-mcp
Azure App Service / Container Apps Deployment
- Build the Docker image and push to Azure Container Registry (ACR):
az acr build --registry <your-acr> --image pp-pipeline-mcp:latest . - Create a Container App or App Service instance pointing to the image.
- Set the four required environment variables as application settings.
- The
docker-entrypoint.shwill authenticate PAC CLI on each container start.
Tip: Use Managed Identity with a federated credential to avoid storing the client secret.
Connecting from Copilot Studio
- Deploy the server to a publicly accessible HTTPS endpoint (e.g.
https://your-app.azurewebsites.net). - In Copilot Studio, go to Settings → AI Capabilities → Model Context Protocol.
- Add a new MCP server with the URL:
https://your-app.azurewebsites.net/mcp - All 12 tools will be discovered automatically and made available to your agent.
Tool Reference
list_pipelines
Lists all deployment pipelines in the environment. No parameters required.
get_pipeline_stages
| Parameter | Type | Description |
|---|---|---|
pipelineId |
string |
GUID of the pipeline from list_pipelines |
deploy_solution
Triggers a PAC CLI deployment. PAC CLI must be authenticated on the server.
| Parameter | Type | Description |
|---|---|---|
solutionName |
string |
Unique name of the solution |
stageId |
string |
Target stage GUID from get_pipeline_stages |
currentVersion |
string |
Current version, e.g. 1.0.0.0 |
newVersion |
string |
Version after deploy, e.g. 1.0.0.1 |
environment |
string |
Source environment URL |
get_deployment_status
| Parameter | Type | Description |
|---|---|---|
deploymentStageRunId |
string |
GUID of the stage run |
get_deployment_history
| Parameter | Type | Description |
|---|---|---|
stageId |
string |
Stage GUID to query |
solutionName |
string? |
Optional solution filter |
top |
number? |
Max records (1–50, default 20) |
list_pending_approvals
| Parameter | Type | Description |
|---|---|---|
pipelineStageId |
string? |
Optional stage filter |
approve_deployment
| Parameter | Type | Description |
|---|---|---|
deploymentStageRunId |
string |
Stage run to approve |
approvalComments |
string? |
Optional comments |
reject_deployment
| Parameter | Type | Description |
|---|---|---|
deploymentStageRunId |
string |
Stage run to reject |
approvalComments |
string |
Reason for rejection |
list_environment_variables
| Parameter | Type | Description |
|---|---|---|
solutionUniqueName |
string |
Solution unique name |
set_environment_variable
| Parameter | Type | Description |
|---|---|---|
environmentVariableDefinitionId |
string |
Definition GUID |
newValue |
string |
New value |
environmentVariableValueId |
string? |
Existing value GUID (omit to create) |
list_connection_references
| Parameter | Type | Description |
|---|---|---|
solutionUniqueName |
string |
Solution unique name |
update_connection_reference
| Parameter | Type | Description |
|---|---|---|
connectionReferenceId |
string |
Connection reference GUID |
connectionId |
string |
Target connection ID |
Security Notes
- Store
AZURE_CLIENT_SECRETin Azure Key Vault and reference it as an App Service secret — never commit it to source control. - The service principal must be added as an Application User in the Power Platform Admin Centre with the appropriate security role for each environment it operates in.
- The
UpdateApprovalStatusDataverse action requires the caller to be the service principal that owns the pipeline connection — this server satisfies that requirement automatically.
Project Structure
src/
index.ts — MCP server entry point, Express HTTP transport
auth/
msalClient.ts — MSAL token acquisition (client credentials)
clients/
dataverseClient.ts — Axios Dataverse Web API client with auth interceptor
pacCliClient.ts — child_process wrapper for PAC CLI
tools/
pipelines.ts — list_pipelines, get_pipeline_stages
deployments.ts — deploy_solution, get_deployment_status, get_deployment_history
approvals.ts — approve_deployment, reject_deployment, list_pending_approvals
configuration.ts — env vars, connection references
types/
index.ts — Shared TypeScript interfaces
from github.com/MattCollins-Jones/power-platform-pipeline-mcp
Installing Power Platform Pipeline Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/MattCollins-Jones/power-platform-pipeline-mcpFAQ
Is Power Platform Pipeline Server MCP free?
Yes, Power Platform Pipeline Server MCP is free — one-click install via Unyly at no cost.
Does Power Platform Pipeline Server need an API key?
No, Power Platform Pipeline Server runs without API keys or environment variables.
Is Power Platform Pipeline Server hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Power Platform Pipeline Server in Claude Desktop, Claude Code or Cursor?
Open Power Platform Pipeline Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Power Platform Pipeline Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
