From 33ed8425ddcb1073cc4ccdb993626bc03bb7e528 Mon Sep 17 00:00:00 2001 From: stefefn Date: Thu, 14 May 2026 00:51:10 +0200 Subject: [PATCH] docs: fix incorrect path in MCP config example README and README-zh both referenced /path/to/CapCutAPI in the mcp_config.json example. The project was renamed to VectCutAPI, so these paths should be /path/to/VectCutAPI. --- README-zh.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README-zh.md b/README-zh.md index 13ae632..69862e8 100644 --- a/README-zh.md +++ b/README-zh.md @@ -108,9 +108,9 @@ python mcp_server.py # 启动 MCP 协议服务,支持 stdio 通信 "capcut-api": { "command": "python3", "args": ["mcp_server.py"], - "cwd": "/path/to/CapCutAPI", + "cwd": "/path/to/VectCutAPI", "env": { - "PYTHONPATH": "/path/to/CapCutAPI", + "PYTHONPATH": "/path/to/VectCutAPI", "DEBUG": "0" } } diff --git a/README.md b/README.md index 988dd6a..bd50b53 100644 --- a/README.md +++ b/README.md @@ -107,9 +107,9 @@ Create or update the `mcp_config.json` configuration file: "capcut-api": { "command": "python3", "args": ["mcp_server.py"], - "cwd": "/path/to/CapCutAPI", + "cwd": "/path/to/VectCutAPI", "env": { - "PYTHONPATH": "/path/to/CapCutAPI", + "PYTHONPATH": "/path/to/VectCutAPI", "DEBUG": "0" } }