1919
2020
2121@mcp .tool ("list_memory_projects" )
22- async def list_projects (ctx : Context | None = None ) -> str :
22+ async def list_memory_projects (ctx : Context | None = None ) -> str :
2323 """List all available projects with their status.
2424
2525 Shows all Basic Memory projects that are available, indicating which one
@@ -29,7 +29,7 @@ async def list_projects(ctx: Context | None = None) -> str:
2929 Formatted list of projects with status indicators
3030
3131 Example:
32- list_projects ()
32+ list_memory_projects ()
3333 """
3434 if ctx : # pragma: no cover
3535 await ctx .info ("Listing all available projects" )
@@ -144,13 +144,13 @@ async def switch_project(project_name: str, ctx: Context | None = None) -> str:
144144 Your session remains on the previous project.
145145
146146 ## Troubleshooting:
147- 1. **Check available projects**: Use `list_projects ()` to see valid project names
147+ 1. **Check available projects**: Use `list_memory_projects ()` to see valid project names
148148 2. **Verify spelling**: Ensure the project name is spelled correctly
149149 3. **Check permissions**: Verify you have access to the requested project
150150 4. **Try again**: The error might be temporary
151151
152152 ## Available options:
153- - See all projects: `list_projects ()`
153+ - See all projects: `list_memory_projects ()`
154154 - Stay on current project: `get_current_project()`
155155 - Try different project: `switch_project("correct-project-name")`
156156
@@ -231,7 +231,7 @@ async def set_default_project(project_name: str, ctx: Context | None = None) ->
231231
232232
233233@mcp .tool ("create_memory_project" )
234- async def create_project (
234+ async def create_memory_project (
235235 project_name : str , project_path : str , set_default : bool = False , ctx : Context | None = None
236236) -> str :
237237 """Create a new Basic Memory project.
@@ -248,8 +248,8 @@ async def create_project(
248248 Confirmation message with project details
249249
250250 Example:
251- create_project ("my-research", "~/Documents/research")
252- create_project ("work-notes", "/home/user/work", set_default=True)
251+ create_memory_project ("my-research", "~/Documents/research")
252+ create_memory_project ("work-notes", "/home/user/work", set_default=True)
253253 """
254254 if ctx : # pragma: no cover
255255 await ctx .info (f"Creating project: { project_name } at { project_path } " )
0 commit comments