@opusclip/mcp 0.1.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/LICENSE +21 -0
- package/README.md +75 -0
- package/bin.mjs +18 -0
- package/package.json +38 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Opusclip Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# OpusClip MCP
|
|
2
|
+
|
|
3
|
+
[](https://smithery.ai/servers/opusclip/opusclip)
|
|
4
|
+
|
|
5
|
+
Turn long videos into AI-curated short clips — from your agent. Submit a video file or
|
|
6
|
+
URL and OpusClip finds the best moments, adds captions, reframes to vertical, and returns
|
|
7
|
+
ready-to-post clips. It can also generate thumbnails and social copy, pull transcripts,
|
|
8
|
+
and schedule posts to your connected social accounts.
|
|
9
|
+
|
|
10
|
+
**OpusClip is a hosted (remote) MCP server** — nothing to build or run locally.
|
|
11
|
+
Authentication is OAuth, handled in the browser on first use. No API keys required.
|
|
12
|
+
|
|
13
|
+
- **Endpoint:** `https://mcp.opus.pro/mcp` (Streamable HTTP + OAuth)
|
|
14
|
+
- **Docs:** https://help.opus.pro/api-reference/agent-setup
|
|
15
|
+
|
|
16
|
+
## Quick start
|
|
17
|
+
|
|
18
|
+
Add OpusClip to your MCP client's config:
|
|
19
|
+
|
|
20
|
+
```json
|
|
21
|
+
{
|
|
22
|
+
"mcpServers": {
|
|
23
|
+
"opusclip": {
|
|
24
|
+
"url": "https://mcp.opus.pro/mcp"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
For stdio-only clients, use the npm launcher instead:
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
{
|
|
34
|
+
"mcpServers": {
|
|
35
|
+
"opusclip": {
|
|
36
|
+
"command": "npx",
|
|
37
|
+
"args": ["-y", "@opusclip/mcp"]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
On the first tool call, a browser window opens to sign in to your OpusClip account and
|
|
44
|
+
approve access.
|
|
45
|
+
|
|
46
|
+
### Per-client setup
|
|
47
|
+
|
|
48
|
+
| Client | How |
|
|
49
|
+
| --- | --- |
|
|
50
|
+
| **Claude.ai / Claude Desktop** | Settings → Connectors → add a custom connector with the URL above |
|
|
51
|
+
| **Cursor** | Settings → Tools & MCP → New MCP Server, or the one-click **Add to Cursor** button in our [docs](https://help.opus.pro/api-reference/agent-setup) |
|
|
52
|
+
| **Cline** | Add the config above to `cline_mcp_settings.json` (see [llms-install.md](./llms-install.md)) |
|
|
53
|
+
| **Claude Code** | `claude mcp add --transport http opusclip https://mcp.opus.pro/mcp` |
|
|
54
|
+
|
|
55
|
+
## What you can do
|
|
56
|
+
|
|
57
|
+
- **Curate** — submit a video (file or URL) and get AI-picked clips scored for virality
|
|
58
|
+
- **Edit** — apply an editing script (trim, reframe, layout, captions) to a clip
|
|
59
|
+
- **Caption & transcript** — pull the transcript, generate styled captions
|
|
60
|
+
- **Thumbnails** — generate thumbnail options for a clip
|
|
61
|
+
- **Social copy** — generate titles, descriptions, and hashtags per platform
|
|
62
|
+
- **Collections** — group clips and export them
|
|
63
|
+
- **Schedule & publish** — post or schedule clips to connected social accounts
|
|
64
|
+
- **Usage** — check your remaining credits and plan
|
|
65
|
+
|
|
66
|
+
See the full tool reference in the [OpusClip API docs](https://help.opus.pro/api-reference/agent-setup).
|
|
67
|
+
|
|
68
|
+
## Registry
|
|
69
|
+
|
|
70
|
+
This server is listed in the official MCP Registry as `io.github.opus-pro/opusclip`
|
|
71
|
+
(see [`server.json`](./server.json)).
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
[MIT](./LICENSE) © Opusclip Inc.
|
package/bin.mjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// @opusclip/mcp — thin launcher.
|
|
3
|
+
// OpusClip runs as a hosted (remote) MCP server with OAuth. This wrapper just
|
|
4
|
+
// proxies a local stdio client to the hosted endpoint via mcp-remote, so clients
|
|
5
|
+
// that only speak stdio (or want a one-line `npx @opusclip/mcp` install) work too.
|
|
6
|
+
import { spawn } from 'node:child_process'
|
|
7
|
+
|
|
8
|
+
const ENDPOINT = 'https://mcp.opus.pro/mcp'
|
|
9
|
+
|
|
10
|
+
const child = spawn('npx', ['-y', 'mcp-remote', ENDPOINT, ...process.argv.slice(2)], {
|
|
11
|
+
stdio: 'inherit',
|
|
12
|
+
})
|
|
13
|
+
|
|
14
|
+
child.on('exit', (code) => process.exit(code ?? 0))
|
|
15
|
+
child.on('error', (err) => {
|
|
16
|
+
console.error('[opusclip-mcp] failed to launch mcp-remote:', err.message)
|
|
17
|
+
process.exit(1)
|
|
18
|
+
})
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@opusclip/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Connect your agent to OpusClip — turn long videos into AI-curated short clips.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"opusclip-mcp": "bin.mjs"
|
|
8
|
+
},
|
|
9
|
+
"mcpName": "io.github.opus-pro/opusclip",
|
|
10
|
+
"files": [
|
|
11
|
+
"bin.mjs",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"keywords": [
|
|
15
|
+
"mcp",
|
|
16
|
+
"modelcontextprotocol",
|
|
17
|
+
"opusclip",
|
|
18
|
+
"video",
|
|
19
|
+
"clips",
|
|
20
|
+
"agent",
|
|
21
|
+
"ai"
|
|
22
|
+
],
|
|
23
|
+
"homepage": "https://help.opus.pro/api-reference/agent-setup",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/opus-pro/opusclip-mcp.git"
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/opus-pro/opusclip-mcp/issues"
|
|
30
|
+
},
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"mcp-remote": "^0.1.38"
|
|
37
|
+
}
|
|
38
|
+
}
|