Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"powerplatform-mcp": {
"args": [
"-y",
"powerplatform-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server and standalone CLI for querying and configuring PowerPlatform / Dataverse environments. Supports multiple environments, entity metadata, records, plugins, flows, solutions, workflows, business rules, security roles, custom APIs, web resources, and more — including write operations for automated environment setup.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'powerplatform-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked powerplatform-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / cloud
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Security Weekly
Get CVE alerts and security updates for Powerplatform Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server and standalone CLI for querying and configuring PowerPlatform / Dataverse environments. Supports multiple environments, entity metadata, records, plugins, flows, solutions, workflows, business rules, security roles, custom APIs, web resources, and more — including write operations for automated environment setup.
MCP integrates directly with AI clients (Claude, Cursor, GitHub Copilot) for interactive, conversational exploration of your environments.
CLI writes results to a file system cache instead of returning them inline. MCP tool responses are bound by the AI client's context window, which can truncate or degrade results when querying environments with hundreds of entities, flows, or plugin steps. The CLI avoids this limitation by persisting full results to disk, making them available for follow-up analysis without context pressure. Both interfaces share the same tools and capabilities.
Requires Node.js 22+ (< 25).
npm install -g powerplatform-mcp
# or
npx powerplatform-mcp
npm install -g powerplatform-cli
# or
npx powerplatform-cli
# MCP Server
docker pull ghcr.io/michsob/powerplatform-mcp
docker run --env-file .env ghcr.io/michsob/powerplatform-mcp
# CLI
docker pull ghcr.io/michsob/powerplatform-cli
docker run --env-file .env ghcr.io/michsob/powerplatform-cli entity-attributes account
The tool supports multiple environments. Define them via environment variables:
POWERPLATFORM_ENVIRONMENTS=DEV,UAT,PROD
# For each environment, set:
POWERPLATFORM_DEV_URL=https://dev-org.crm.dynamics.com
POWERPLATFORM_DEV_CLIENT_ID=your-client-id
POWERPLATFORM_DEV_CLIENT_SECRET=your-client-secret
POWERPLATFORM_DEV_TENANT_ID=your-tenant-id
POWERPLATFORM_UAT_URL=https://uat-org.crm.dynamics.com
POWERPLATFORM_UAT_CLIENT_ID=...
POWERPLATFORM_UAT_CLIENT_SECRET=...
POWERPLATFORM_UAT_TENANT_ID=...
For local development, copy .env.example to .env and fill in your credentials.
The MCP server is designed for AI-powered clients (Claude, Cursor, GitHub Copilot).
All tools accept an optional environment parameter to target a specific environment (defaults to the first configured).
| Tool | Description | Required Params | Optional |
|---|---|---|---|
get-entity-metadata | Get entity metadata | entityName | |
get-entity-attributes | List all attributes/fields | entityName | |
get-entity-attribute | Get a specific attribute | entityName, attributeName | |
get-entity-relationships | Get 1:N and N:N relationships | entityName | |
create-entity-string-attribute | Create a Single Line of Text column | entityName, schemaName, displayName | maxLength, requiredLevel, description, solutionName |
get-entity-keys | List alternate keys on an entity | entityName | |
create-entity-alternate-key | Create an alternate key | entityName, schemaName, displayName, keyAttributes | solutionName |
| Tool | Description | Required Params | Optional |
|---|---|---|---|
get-record | Get a record by ID | entityNamePlural, recordId | |
query-records | OData query | entityNamePlural, filter | maxRecords (default 50) |
| Tool | Description | Required Params | Optional |
|---|---|---|---|
get-plugin-assemblies | List plugin assemblies | includeManaged, maxRecords | |
get-plugin-assembly-complete | Assembly with types, steps, images | assemblyName | includeDisabled |
get-entity-plugin-pipeline | Plugins executing on an entity | entityName | messageFilter, includeDisabled |
get-plugin-trace-logs | Plugin trace logs | entityName, `messageName |