fix: Update DSS plugin paths after consolidation
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled

- Update .mcp.json PYTHONPATH to use project root instead of dss-mvp1
- Fix hardcoded path in dss-mcp-server.py to use relative path

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-10 15:33:52 -03:00
parent 351f34d08c
commit 6ade12b2fe
2 changed files with 3 additions and 3 deletions

View File

@@ -49,8 +49,8 @@ try:
except ImportError:
LOCAL_BROWSER_STRATEGY_AVAILABLE = False
# Add DSS to path
DSS_PATH = Path("/home/overbits/dss/dss-mvp1")
# Add DSS to path (project root)
DSS_PATH = Path(__file__).parent.parent.parent
sys.path.insert(0, str(DSS_PATH))
# MCP SDK imports