Frontmatter
| id | 8314 |
| title | [Neural Link] Feature: Support --cwd CLI argument |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Jan 4, 2026, 4:58 PM |
| updatedAt | Jan 4, 2026, 5:15 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8314 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 4, 2026, 5:15 PM |
Description
The Neural Link MCP server requires the
npm runcommand to be executed from the project root. However, some environments (like Antigravity) do not support thecwdproperty in their configuration files.This update adds a
--cwdcommand-line argument to themcp-stdio.mjsentry point, allowing the working directory to be passed as an argument.Changes
mcp-stdio.mjs: Added--cwdoption to Commander.Server.mjs: PropagatedbridgeCwdtoConnectionService.ConnectionService.mjs: UpdatedspawnBridgeto use the configuredcwd.mcp_config.json: Updated usage to use--cwdinstead of the invalidcwdproperty.