create_memory_project
Build a new project in Basic Memory with a unique name and file path. Optionally set it as the default project for organizing and storing knowledge in Markdown files.
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 |