create_memory_project
Initiate a new knowledge management project by defining a unique name and storage path, with the option to set it as the default. Organizes data in Markdown files for persistent semantic graph creation.
Instructions
Create a new Basic Memory project.
Creates a new project with the specified name and path. The project directory will be created if it doesn't exist. Optionally sets the new project as default.
Args: project_name: Name for the new project (must be unique) project_path: File system path where the project will be stored set_default: Whether to set this project as the default (optional, defaults to False)
Returns: Confirmation message with project details
Example: create_memory_project("my-research", "~/Documents/research") create_memory_project("work-notes", "/home/user/work", set_default=True)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes | ||
project_path | Yes | ||
set_default | No |