@nullplatform/mcp 0.1.14 → 0.1.16

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 (44) hide show
  1. package/README.md +10 -0
  2. package/dist/http.js +16 -12
  3. package/dist/i18n.js +6 -0
  4. package/dist/log.js +53 -0
  5. package/dist/np/client.js +10 -1
  6. package/dist/np/context.js +24 -19
  7. package/dist/np/journey.js +23 -6
  8. package/dist/render.js +12 -13
  9. package/dist/surfaces/developer.js +15 -5
  10. package/dist/tool.js +84 -6
  11. package/dist/tools/create-app.js +125 -111
  12. package/dist/tools/create-link.js +81 -54
  13. package/dist/tools/create-scope.js +34 -22
  14. package/dist/tools/create-service.js +38 -24
  15. package/dist/tools/deploy.js +52 -30
  16. package/dist/tools/deployments.js +1 -1
  17. package/dist/tools/entity-list.js +14 -6
  18. package/dist/tools/logs.js +114 -17
  19. package/dist/tools/overview.js +1 -1
  20. package/dist/tools/params.js +7 -1
  21. package/dist/tools/releases.js +1 -1
  22. package/dist/tools/set-params.js +17 -18
  23. package/dist/tools/shared.js +9 -0
  24. package/dist/tools/status.js +13 -6
  25. package/dist/tools/traffic.js +38 -26
  26. package/dist/ui.js +1 -1
  27. package/package.json +2 -1
  28. package/widgets-dist/approvals.html +112 -10
  29. package/widgets-dist/builds.html +119 -17
  30. package/widgets-dist/create-app.html +121 -19
  31. package/widgets-dist/deployments.html +124 -22
  32. package/widgets-dist/find-apps.html +123 -21
  33. package/widgets-dist/logs.html +125 -23
  34. package/widgets-dist/manifest.json +16 -16
  35. package/widgets-dist/metrics.html +112 -10
  36. package/widgets-dist/overview.html +128 -26
  37. package/widgets-dist/params.html +119 -17
  38. package/widgets-dist/releases.html +128 -26
  39. package/widgets-dist/service-action.html +116 -14
  40. package/widgets-dist/service-create.html +115 -13
  41. package/widgets-dist/service-delete.html +112 -10
  42. package/widgets-dist/service-link.html +115 -13
  43. package/widgets-dist/services.html +112 -10
  44. package/widgets-dist/{np-panel.html → status.html} +127 -25
package/dist/ui.js CHANGED
@@ -13,7 +13,7 @@ import { EXTENSION_ID, RESOURCE_MIME_TYPE, RESOURCE_URI_META_KEY, registerAppRes
13
13
  export { EXTENSION_ID, RESOURCE_MIME_TYPE };
14
14
  /** Every widget this server can serve, by file name -> human title. */
15
15
  export const WIDGETS = {
16
- "np-panel": "Application panel",
16
+ status: "Application panel",
17
17
  "create-app": "Create application",
18
18
  params: "Parameters",
19
19
  logs: "Logs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nullplatform/mcp",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "nullplatform from your code assistant — an MCP server that replaces the dashboard for the everyday developer journey",
5
5
  "license": "MIT",
6
6
  "author": "nullplatform",
@@ -47,6 +47,7 @@
47
47
  "dependencies": {
48
48
  "@modelcontextprotocol/ext-apps": "^1.7.4",
49
49
  "@modelcontextprotocol/sdk": "^1.0.0",
50
+ "pino": "^10.3.1",
50
51
  "zod": "^3.23.8"
51
52
  },
52
53
  "devDependencies": {