Fix: add missing parser/docgen, rename parser→go_parser, add uv packaging

- parser.py renamed to go_parser.py (avoids Python builtin conflict)
- docgen.py was missing from flat structure
- Added pyproject.toml for uv
- Updated .mcp.json to use uv run
- Updated README for uv workflow
This commit is contained in:
Jarvis Prime
2026-03-04 04:30:43 +00:00
parent 81b0c699a0
commit 9680dc07eb
6 changed files with 263 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
{
"mcpServers": {
"dev-intel": {
"command": "python",
"args": ["mcp_server.py"],
"command": "uv",
"args": ["run", "python", "mcp_server.py"],
"cwd": "."
}
}