-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.51 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@ssemble/mcp-server",
"version": "1.1.0",
"mcpName": "com.ssemble/mcp-server",
"description": "MCP server for Ssemble AI Clipping — create viral short-form videos from any AI assistant. Webhook callbacks for n8n, Zapier, and Make automation.",
"type": "module",
"bin": {
"ssemble-mcp": "./src/transports/stdio.js"
},
"main": "./src/index.js",
"files": [
"src/",
"server.json",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node src/transports/stdio.js",
"start:http": "node src/transports/http.js",
"build:apps": "rm -rf src/apps/dist && APP=templates-app vite build && APP=music-app vite build && APP=game-videos-app vite build && APP=meme-hooks-app vite build && APP=shorts-app vite build",
"prepublishOnly": "npm run build:apps",
"test": "node --test tests/**/*.test.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"ssemble",
"ai-clipping",
"video",
"shorts",
"youtube",
"tiktok",
"instagram-reels"
],
"author": "Ssemble <support@ssemble.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ssembleinc/ssemble-mcp-server.git"
},
"homepage": "https://www.ssemble.com/",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.3.2",
"@modelcontextprotocol/sdk": "^1.12.0",
"express": "^4.21.0",
"zod": "^3.23.0"
},
"devDependencies": {
"vite": "^5.4.21",
"vite-plugin-singlefile": "^2.3.2"
}
}