@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.
- package/README.md +10 -0
- package/dist/http.js +16 -12
- package/dist/i18n.js +6 -0
- package/dist/log.js +53 -0
- package/dist/np/client.js +10 -1
- package/dist/np/context.js +24 -19
- package/dist/np/journey.js +23 -6
- package/dist/render.js +12 -13
- package/dist/surfaces/developer.js +15 -5
- package/dist/tool.js +84 -6
- package/dist/tools/create-app.js +125 -111
- package/dist/tools/create-link.js +81 -54
- package/dist/tools/create-scope.js +34 -22
- package/dist/tools/create-service.js +38 -24
- package/dist/tools/deploy.js +52 -30
- package/dist/tools/deployments.js +1 -1
- package/dist/tools/entity-list.js +14 -6
- package/dist/tools/logs.js +114 -17
- package/dist/tools/overview.js +1 -1
- package/dist/tools/params.js +7 -1
- package/dist/tools/releases.js +1 -1
- package/dist/tools/set-params.js +17 -18
- package/dist/tools/shared.js +9 -0
- package/dist/tools/status.js +13 -6
- package/dist/tools/traffic.js +38 -26
- package/dist/ui.js +1 -1
- package/package.json +2 -1
- package/widgets-dist/approvals.html +112 -10
- package/widgets-dist/builds.html +119 -17
- package/widgets-dist/create-app.html +121 -19
- package/widgets-dist/deployments.html +124 -22
- package/widgets-dist/find-apps.html +123 -21
- package/widgets-dist/logs.html +125 -23
- package/widgets-dist/manifest.json +16 -16
- package/widgets-dist/metrics.html +112 -10
- package/widgets-dist/overview.html +128 -26
- package/widgets-dist/params.html +119 -17
- package/widgets-dist/releases.html +128 -26
- package/widgets-dist/service-action.html +116 -14
- package/widgets-dist/service-create.html +115 -13
- package/widgets-dist/service-delete.html +112 -10
- package/widgets-dist/service-link.html +115 -13
- package/widgets-dist/services.html +112 -10
- 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
|
-
|
|
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.
|
|
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": {
|