@magic-seven-ai/magic-seven-mcp 1.6.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 +74 -0
- package/bin/magic-seven-mcp.js +2 -0
- package/dist/fallback-cache.json +3637 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +437 -0
- package/package.json +39 -0
package/README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# magic-seven-mcp
|
|
2
|
+
|
|
3
|
+
MCP stdio bridge for the [Magic Seven](https://magicseven.ai) desktop video editor. Lets Claude Desktop and other STDIO-only MCP clients connect to Magic Seven's MCP server using lazy launch — the app only starts when the agent sends its first real request.
|
|
4
|
+
|
|
5
|
+
## Setup
|
|
6
|
+
|
|
7
|
+
### Claude Desktop
|
|
8
|
+
|
|
9
|
+
Add this to your `claude_desktop_config.json` (Settings > Developer > Edit Config):
|
|
10
|
+
|
|
11
|
+
```json
|
|
12
|
+
{
|
|
13
|
+
"mcpServers": {
|
|
14
|
+
"magic-seven": {
|
|
15
|
+
"command": "npx",
|
|
16
|
+
"args": ["-y", "@magic-seven-ai/magic-seven-mcp@latest"]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
> **Why `@latest`?** Without it, `npx` caches the first version it downloads and never checks for updates. The `@latest` tag forces a freshness check on every launch, so Claude Desktop always uses the newest version.
|
|
23
|
+
|
|
24
|
+
Then restart Claude Desktop.
|
|
25
|
+
|
|
26
|
+
> **Note:** If Claude Desktop can't find `npx`, use the full path. Run `which npx` in your
|
|
27
|
+
> terminal to find it, then replace `"npx"` with the result (e.g., `"/usr/local/bin/npx"`).
|
|
28
|
+
|
|
29
|
+
### Other STDIO clients
|
|
30
|
+
|
|
31
|
+
Any MCP client that supports stdio transport can use this bridge:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npx magic-seven-mcp
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### HTTP clients (no bridge needed)
|
|
38
|
+
|
|
39
|
+
Claude Code, Cursor, and Windsurf connect directly — no bridge required:
|
|
40
|
+
|
|
41
|
+
**Claude Code:**
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
claude mcp add magic-seven --transport http http://127.0.0.1:7777/mcp
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**Cursor / Windsurf / other HTTP clients:**
|
|
48
|
+
|
|
49
|
+
```json
|
|
50
|
+
{
|
|
51
|
+
"mcpServers": {
|
|
52
|
+
"magic-seven": {
|
|
53
|
+
"url": "http://127.0.0.1:7777/mcp"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Logs
|
|
60
|
+
|
|
61
|
+
The bridge writes diagnostic logs to stderr. Claude Desktop captures these at:
|
|
62
|
+
|
|
63
|
+
- **macOS:** `~/Library/Logs/Claude/mcp-server-magic-seven.log`
|
|
64
|
+
- **Windows:** `%APPDATA%\Claude\Logs\mcp-server-magic-seven.log`
|
|
65
|
+
|
|
66
|
+
## Troubleshooting
|
|
67
|
+
|
|
68
|
+
If tools seem stale or out of date, clear the bridge cache:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
rm ~/.config/magic-seven/mcp-bridge-cache.json
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Then restart Claude Desktop. The cache will be rebuilt automatically on next use.
|