Frontmatter
| id | 7803 |
| title | Support --debug flag via commander in GitHub Workflow MCP Server |
| state | Closed |
| labels | enhancementairefactoring |
| assignees | tobiu |
| createdAt | Nov 19, 2025, 12:02 PM |
| updatedAt | Nov 19, 2025, 12:08 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7803 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Nov 19, 2025, 12:08 PM |
The current debugging implementation relies on manually parsing
process.argvinsideai/mcp/server/github-workflow/logger.mjs. Since we are now usingcommander, we should standardize this behavior.Tasks:
ai/mcp/server/github-workflow/mcp-stdio.mjsto support a--debug(and-d) option usingcommander.aiConfig.debugtotrue.ai/mcp/server/github-workflow/logger.mjsto rely solely onaiConfig.debug(viaaiConfig.data.debugor the proxy access), removing the manualprocess.argvcheck.This consolidation ensures a single source of truth for the debug state and leverages the CLI parsing library correctly.