Skip to content

Commit d6855c5

Browse files
jope-bmclaude
andcommitted
Remove trailing slash from project list endpoint path
The cloud proxy route for project list filtering is registered at /v2/projects (no trailing slash). Requests to /v2/projects/ were falling through to the catch-all route, bypassing private project filtering and display_name enrichment. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Joe P <joe@basicmemory.com>
1 parent c090ebe commit d6855c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/basic_memory/mcp/clients/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async def list_projects(self) -> ProjectList:
5555
"""
5656
response = await call_get(
5757
self.http_client,
58-
"/v2/projects/",
58+
"/v2/projects",
5959
)
6060
return ProjectList.model_validate(response.json())
6161

0 commit comments

Comments
 (0)