@mcp-consultant-tools/powerplatform 28.0.0-beta.6 → 28.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/build/cli/commands/app-commands.d.ts +7 -0
  2. package/build/cli/commands/app-commands.d.ts.map +1 -0
  3. package/build/cli/commands/app-commands.js +65 -0
  4. package/build/cli/commands/app-commands.js.map +1 -0
  5. package/build/cli/commands/flow-commands.d.ts +7 -0
  6. package/build/cli/commands/flow-commands.d.ts.map +1 -0
  7. package/build/cli/commands/flow-commands.js +170 -0
  8. package/build/cli/commands/flow-commands.js.map +1 -0
  9. package/build/cli/commands/form-commands.d.ts +7 -0
  10. package/build/cli/commands/form-commands.d.ts.map +1 -0
  11. package/build/cli/commands/form-commands.js +104 -0
  12. package/build/cli/commands/form-commands.js.map +1 -0
  13. package/build/cli/commands/index.d.ts +15 -0
  14. package/build/cli/commands/index.d.ts.map +1 -0
  15. package/build/cli/commands/index.js +30 -0
  16. package/build/cli/commands/index.js.map +1 -0
  17. package/build/cli/commands/integration-commands.d.ts +7 -0
  18. package/build/cli/commands/integration-commands.d.ts.map +1 -0
  19. package/build/cli/commands/integration-commands.js +97 -0
  20. package/build/cli/commands/integration-commands.js.map +1 -0
  21. package/build/cli/commands/metadata-commands.d.ts +7 -0
  22. package/build/cli/commands/metadata-commands.d.ts.map +1 -0
  23. package/build/cli/commands/metadata-commands.js +83 -0
  24. package/build/cli/commands/metadata-commands.js.map +1 -0
  25. package/build/cli/commands/plugin-commands.d.ts +7 -0
  26. package/build/cli/commands/plugin-commands.d.ts.map +1 -0
  27. package/build/cli/commands/plugin-commands.js +79 -0
  28. package/build/cli/commands/plugin-commands.js.map +1 -0
  29. package/build/cli/commands/security-commands.d.ts +7 -0
  30. package/build/cli/commands/security-commands.d.ts.map +1 -0
  31. package/build/cli/commands/security-commands.js +89 -0
  32. package/build/cli/commands/security-commands.js.map +1 -0
  33. package/build/cli/commands/solution-commands.d.ts +7 -0
  34. package/build/cli/commands/solution-commands.d.ts.map +1 -0
  35. package/build/cli/commands/solution-commands.js +146 -0
  36. package/build/cli/commands/solution-commands.js.map +1 -0
  37. package/build/cli/output.d.ts +11 -0
  38. package/build/cli/output.d.ts.map +1 -0
  39. package/build/cli/output.js +10 -0
  40. package/build/cli/output.js.map +1 -0
  41. package/build/cli.d.ts +9 -0
  42. package/build/cli.d.ts.map +1 -0
  43. package/build/cli.js +30 -0
  44. package/build/cli.js.map +1 -0
  45. package/build/context-factory.d.ts +11 -0
  46. package/build/context-factory.d.ts.map +1 -0
  47. package/build/context-factory.js +39 -0
  48. package/build/context-factory.js.map +1 -0
  49. package/package.json +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-consultant-tools/powerplatform",
3
- "version": "28.0.0-beta.6",
3
+ "version": "28.0.0",
4
4
  "description": "MCP server for Microsoft PowerPlatform/Dataverse - read-only access (production-safe)",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",
@@ -44,9 +44,10 @@
44
44
  "node": ">=16.0.0"
45
45
  },
46
46
  "dependencies": {
47
- "@mcp-consultant-tools/core": "27.0.0-beta.1",
48
- "@mcp-consultant-tools/powerplatform-core": "27.0.0-beta.2",
47
+ "@mcp-consultant-tools/core": "28.0.0",
48
+ "@mcp-consultant-tools/powerplatform-core": "28.0.0",
49
49
  "@modelcontextprotocol/sdk": "^1.24.3",
50
+ "commander": "^14.0.3",
50
51
  "express": "^4.21.0",
51
52
  "zod": "^3.24.1"
52
53
  },
@@ -59,6 +60,7 @@
59
60
  "mcp-consultant-tools-powerplatform": "build/index.js",
60
61
  "powerplatform": "build/index.js",
61
62
  "mcp-pp": "build/index.js",
62
- "mcp-pp-http": "build/http-server.js"
63
+ "mcp-pp-http": "build/http-server.js",
64
+ "mcp-pp-cli": "build/cli.js"
63
65
  }
64
66
  }