@milaboratories/pl-mcp-server 13.0.0 → 15.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.
- package/README.md +2 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -30,14 +30,14 @@ Claude Code ──MCP──▶ pl-mcp-server (worker) ──IPC──▶ Des
|
|
|
30
30
|
|
|
31
31
|
1. **Start the Platforma Desktop App and enable MCP** — the MCP server feature marked as Alpha for now. To enable it open Settings, scroll down to the bottom, enable checkbox "Enable MCP Server". Then copy MCP Server URL.
|
|
32
32
|
|
|
33
|
-
2. **Add the MCP server to Claude Code** by creating or editing `.claude/settings.json
|
|
33
|
+
2. **Add the MCP server to Claude Code** by creating or editing `.claude/settings.json` (don't forget to change the MCP URL):
|
|
34
34
|
|
|
35
35
|
```json
|
|
36
36
|
{
|
|
37
37
|
"mcpServers": {
|
|
38
38
|
"pl": {
|
|
39
39
|
"type": "sse",
|
|
40
|
-
"url": "http://
|
|
40
|
+
"url": "http://127.0.0.1:4200/<!!CHANGE ME!!>/mcp"
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pl-mcp-server",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"description": "MCP server for Platforma Desktop",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
"@vitest/coverage-istanbul": "^4.1.3",
|
|
29
29
|
"typescript": "~5.9.3",
|
|
30
30
|
"vitest": "^4.1.3",
|
|
31
|
-
"@milaboratories/pl-errors": "1.4.7",
|
|
32
31
|
"@milaboratories/build-configs": "2.0.0",
|
|
32
|
+
"@milaboratories/pl-errors": "1.4.15",
|
|
33
|
+
"@milaboratories/pl-middle-layer": "1.62.0",
|
|
33
34
|
"@milaboratories/pl-model-common": "1.42.0",
|
|
34
|
-
"@milaboratories/
|
|
35
|
+
"@milaboratories/ts-builder": "1.5.0",
|
|
35
36
|
"@milaboratories/ts-configs": "1.2.3",
|
|
36
|
-
"@platforma-sdk/model": "1.77.
|
|
37
|
-
"@milaboratories/ts-builder": "1.4.0"
|
|
37
|
+
"@platforma-sdk/model": "1.77.17"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@milaboratories/pl-middle-layer": ">=1.
|
|
41
|
-
"@platforma-sdk/model": ">=1.77.
|
|
40
|
+
"@milaboratories/pl-middle-layer": ">=1.62.0",
|
|
41
|
+
"@platforma-sdk/model": ">=1.77.17"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=22.0.0"
|