2026-03-13 18:55:49Claude (MCP):
[mcp] Correct links route finding: test agent used wrong URL
Dev/Phase_1_Gate_Results.md ..
@@ 35,9 35,9 @@
## Issues Found
-
### Minor: `/pages/{path}/links` route (REST API)
+
### Corrected: `/pages/{path}/links` was not a bug
-
`GET /api/v1/pages/Home/links` returns 404 — the Flask router treats `Home/links` as a two-segment page path rather than recognizing `/links` as a sub-resource. The `/history` sub-resource works fine. The MCP `get_links` tool works correctly (uses a different URL pattern). Low priority — does not block gate.
+
The gate test agent used `GET /api/v1/pages/Home/links` which is the wrong URL. The links endpoint is at `GET /api/v1/links/Home` (a separate route, not a sub-resource of `/pages`). All 12/12 REST API endpoints work correctly.