Skip to content

Point .mcp.json at local SpliceKit checkout - #83

Open
Sungurulol wants to merge 1 commit into
elliotttate:mainfrom
Sungurulol:fix-mcp-local-paths
Open

Point .mcp.json at local SpliceKit checkout#83
Sungurulol wants to merge 1 commit into
elliotttate:mainfrom
Sungurulol:fix-mcp-local-paths

Conversation

@Sungurulol

@Sungurulol Sungurulol commented Aug 14, 2026

Copy link
Copy Markdown

Summary

  • .mcp.json hardcoded the previous contributor's (briantate) Python venv path and repo checkout path for the splicekit MCP server, which meant the MCP server failed to resolve/start on any other machine.
  • Updates command and args to this machine's venv (/Users/sunguru/.venvs/splicekit-mcp/bin/python) and repo location (/Users/sunguru/SpliceKit/mcp/server.py).

Note for reviewer

.mcp.json appears to store an absolute, machine-specific path rather than something portable (e.g. a relative path, $HOME-relative path, or an env var) — the same pattern was already present for briantate's machine before this change. This PR follows that existing convention rather than introducing a new one. If a portable form is preferred going forward (so each contributor doesn't need to hand-edit this file), happy to follow up with that instead — flagging in case that's the better long-term fix.

Test plan

  • Confirmed splicekit MCP server connects and bridge_status returns a healthy response against a running Final Cut Pro instance after this change.

Summary by cubic

Points .mcp.json splicekit MCP server to this machine’s venv and repo paths so the server starts locally. Previously it used another contributor’s absolute paths and failed to resolve; now it uses /Users/sunguru/.venvs/splicekit-mcp/bin/python and /Users/sunguru/SpliceKit/mcp/server.py, which is still machine-specific.

Review notes

  • Updates only command and args for splicekit; no runtime code changes.
  • Keeps the existing absolute-path pattern; a portable approach can follow in a separate PR.

Developer action

  • Update these paths in .mcp.json to your local venv and repo to run the splicekit server on your machine.

Written for commit ebd5290. Summary will update on new commits.

Review in cubic

Update the splicekit MCP server command/args from the previous
maintainer's paths to this machine's venv and repo location so the
MCP server resolves on startup.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 issue found across 1 file

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name=".mcp.json">

<violation number="1" location=".mcp.json:4">
P2: This committed config still hardcodes a machine-specific absolute path (/Users/sunguru/...), so the splicekit MCP server only resolves on this contributor's machine — the same failure the PR reports fixing for the previous contributor. Use the repo's portable form instead: command "/Users/sunguru/.venvs/splicekit-mcp/bin/python" should be the $HOME-derived path the Makefile/README standardize on, and the server.py path should be relative to the repo (e.g. ./mcp/server.py or $PWD).</violation>
</file>

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread .mcp.json
"splicekit": {
"command": "/Users/briantate/.venvs/splicekit-mcp/bin/python",
"args": ["/Users/briantate/Documents/GitHub/SpliceKit/mcp/server.py"]
"command": "/Users/sunguru/.venvs/splicekit-mcp/bin/python",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: This committed config still hardcodes a machine-specific absolute path (/Users/sunguru/...), so the splicekit MCP server only resolves on this contributor's machine — the same failure the PR reports fixing for the previous contributor. Use the repo's portable form instead: command "/Users/sunguru/.venvs/splicekit-mcp/bin/python" should be the $HOME-derived path the Makefile/README standardize on, and the server.py path should be relative to the repo (e.g. ./mcp/server.py or $PWD).

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .mcp.json, line 4:

<comment>This committed config still hardcodes a machine-specific absolute path (/Users/sunguru/...), so the splicekit MCP server only resolves on this contributor's machine — the same failure the PR reports fixing for the previous contributor. Use the repo's portable form instead: command "/Users/sunguru/.venvs/splicekit-mcp/bin/python" should be the $HOME-derived path the Makefile/README standardize on, and the server.py path should be relative to the repo (e.g. ./mcp/server.py or $PWD).</comment>

<file context>
@@ -1,8 +1,8 @@
     "splicekit": {
-      "command": "/Users/briantate/.venvs/splicekit-mcp/bin/python",
-      "args": ["/Users/briantate/Documents/GitHub/SpliceKit/mcp/server.py"]
+      "command": "/Users/sunguru/.venvs/splicekit-mcp/bin/python",
+      "args": ["/Users/sunguru/SpliceKit/mcp/server.py"]
     }
</file context>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant