Power Platform Developer Suite

April 24, 2026 · View on GitHub

Build License: MIT .NET Docs

Developer platform for Microsoft Power Platform and Dataverse. PPDS ships a CLI, TUI, VS Code extension, MCP server, and NuGet libraries — each surface independently consumable, all developed in parallel. Install only what you need.

v1.0 Highlights

  • SQL query engine with an SSMS-like experience, TDS endpoint routing, and DML support
  • VS Code extension with profile/environment management, solutions browser, and .ppdsnb notebooks
  • Interactive TUI with menu-driven workflows for exploration and one-off tasks
  • MCP server exposing 20+ Dataverse tools to AI assistants
  • Declarative plugin registration via attributes — no Plugin Registration Tool required
  • Fast bulk data operations over pooled Dataverse connections

See docs/whats-new-v1.md for the full v1.0 feature inventory.

Quick Start

# Install the CLI tool
dotnet tool install -g PPDS.Cli

# Launch interactive TUI
ppds

# Or run commands directly
ppds auth create --name dev
ppds env select --environment "My Environment"
ppds data export --schema schema.xml --output data.zip

Platform Overview

ComponentTypeInstallRequirement
ppdsCLI + TUIdotnet tool install -g PPDS.Cli.NET 8.0+ (Windows / macOS / Linux)
VS Code ExtensionIDE ExtensionMarketplaceVS Code 1.116+
ppds-mcp-serverMCP Serverdotnet tool install -g PPDS.Mcp.NET 8.0+

NuGet Libraries

PackageNuGetDescription
PPDS.PluginsNuGetDeclarative plugin registration attributes (net462)
PPDS.DataverseNuGetHigh-performance connection pooling and bulk operations
PPDS.MigrationNuGetHigh-performance data migration engine
PPDS.AuthNuGetAuthentication profiles and credential management
PPDS.QueryNuGetSQL query engine with FetchXML transpilation and ADO.NET provider
PPDS.CliNuGetCLI tool with TUI (.NET tool)
PPDS.McpNuGetMCP server for AI assistants (.NET tool)

All libraries except PPDS.Plugins target net8.0, net9.0, and net10.0. Per-package documentation lives in each package's README.

CLI Commands

CommandPurpose
ppds authAuthentication profiles (create, list, select, delete, update, who)
ppds envEnvironment discovery and selection (list, select, who)
ppds dataData operations (export, import, copy, schema, users, load, truncate)
ppds pluginsPlugin registration (extract, deploy, diff, list, clean)
ppds metadataSchema browsing and authoring (entities, attributes, relationships, keys, optionsets)
ppds queryExecute queries (fetch, sql, explain, history)
ppds serveRun RPC daemon for VS Code extension
ProjectDescription
ppds-docsDocumentation site (source)
ppds-toolsPowerShell deployment module
ppds-almCI/CD pipeline templates
ppds-demoReference implementation
Claude Code templatesPPDS integration for Claude Code users

Contributing

See CONTRIBUTING.md for development setup, build instructions, and guidelines.

License

PPDS is distributed under the MIT License — see LICENSE for the full text.

Third-party components and vendored source (including a subset of microsoft/git-credential-manager for credential storage) are attributed in THIRD_PARTY_NOTICES.md.