@solarisdk/mcp 0.2.2 → 0.3.1

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/package.json CHANGED
@@ -1,29 +1,30 @@
1
1
  {
2
2
  "name": "@solarisdk/mcp",
3
- "version": "0.2.2",
4
- "description": "Model Context Protocol server for the Solari cloud browser, sandboxes + desktops drive them from Claude Desktop/Cowork, Claude Code, Cursor, etc.",
3
+ "version": "0.3.1",
4
+ "description": "Model Context Protocol server for the Solari cloud browser, sandboxes + desktops \u2014 drive them from Claude Desktop/Cowork, Claude Code, Cursor, etc.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "solari-mcp": "./dist/cli.js"
8
8
  },
9
9
  "main": "./dist/server.js",
10
10
  "files": [
11
- "dist/*.js",
12
- "dist/*.d.ts",
11
+ "dist",
13
12
  "README.md"
14
13
  ],
15
14
  "scripts": {
16
15
  "build": "tsc",
17
16
  "typecheck": "tsc --noEmit",
18
17
  "test": "npm run build && node --test test/*.test.mjs",
19
- "build:bundle": "esbuild src/cli.ts --bundle --platform=node --format=cjs --target=node18 --outfile=dist/solari-mcp.bundle.cjs --log-level=warning"
18
+ "build:bundle": "esbuild src/cli.ts --bundle --platform=node --format=cjs --target=node18 --outfile=dist/solari-mcp.bundle.cjs --log-level=warning",
19
+ "build:bundle:http": "esbuild src/http.ts --bundle --platform=node --format=cjs --target=node18 --outfile=dist/solari-mcp-http.bundle.cjs --log-level=warning",
20
+ "build:all": "npm run build && npm run build:bundle && npm run build:bundle:http"
20
21
  },
21
22
  "engines": {
22
23
  "node": ">=18"
23
24
  },
24
25
  "license": "MIT",
25
26
  "dependencies": {
26
- "@modelcontextprotocol/sdk": "^1.0.0",
27
+ "@modelcontextprotocol/sdk": "^1.29.0",
27
28
  "@solarisdk/sdk": "^0.1.2",
28
29
  "puppeteer-core": "^24.43.1",
29
30
  "zod": "^3.23.0"