shotops-mcp 0.5.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 +419 -0
- package/dist/local.js +3261 -0
- package/harness-dist/assets/Fraunces-SemiBold-BtraKtER.woff2 +0 -0
- package/harness-dist/assets/Inter-SemiBold-B9yU462S.woff2 +0 -0
- package/harness-dist/assets/Manrope-SemiBold-44nuYf5T.woff2 +0 -0
- package/harness-dist/assets/Poppins-SemiBold-DJVo7c07.woff2 +0 -0
- package/harness-dist/assets/SpaceGrotesk-SemiBold-CyO2J5Y0.woff2 +0 -0
- package/harness-dist/assets/index-D1u7TBPd.js +3802 -0
- package/harness-dist/assets/iphone-optimized-BdcJzlHi.glb +0 -0
- package/harness-dist/assets/pixel-optimized-DZsBrOgu.glb +0 -0
- package/harness-dist/index.html +10 -0
- package/package.json +44 -0
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shotops-mcp",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "The bundle-emitting MCP server over the @engine/@sync spine. Exposes ShotOps tools to ChatGPT, Claude Code, Cursor, and CI over Streamable HTTP with OAuth or personal API tokens. Zero-custody: no code path accepts, stores, or forwards a store-signing credential — upload stays the user's own fastlane. Renders via headless Playwright Chromium, the engine's native non-browser habitat (same path as mockup-mcp). Also ships as a free LOCAL stdio server (`npx shotops-mcp`) — same render, on your own machine, no account needed.",
|
|
7
|
+
"license": "UNLICENSED",
|
|
8
|
+
"bin": {
|
|
9
|
+
"shotops-mcp": "./dist/local.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"harness-dist",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=20.12"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "tsx src/server.ts",
|
|
21
|
+
"start": "tsx src/server.ts",
|
|
22
|
+
"build:harness": "vite build --config vite.harness.config.mjs",
|
|
23
|
+
"build:node": "node build.mjs",
|
|
24
|
+
"build": "npm run build:harness && npm run build:node",
|
|
25
|
+
"prepublishOnly": "npm run build",
|
|
26
|
+
"typecheck": "tsc --noEmit"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
30
|
+
"express": "^5.2.1",
|
|
31
|
+
"fflate": "^0.8.3",
|
|
32
|
+
"playwright": "1.61.1",
|
|
33
|
+
"tsx": "^4.23.0",
|
|
34
|
+
"zod": "^3.25.76"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/express": "^5.0.6",
|
|
38
|
+
"esbuild": "^0.28.1",
|
|
39
|
+
"pixelmatch": "^7.2.0",
|
|
40
|
+
"pngjs": "^7.0.0",
|
|
41
|
+
"typescript": "^5.6.0",
|
|
42
|
+
"vite": "^5.4.0"
|
|
43
|
+
}
|
|
44
|
+
}
|