switch_project
Change the active project context for all subsequent tool calls in the knowledge management system, displaying a summary of the newly selected project.
Instructions
Switch to a different project context.
Changes the active project context for all subsequent tool calls. Shows a project summary after switching successfully.
Args: project_name: Name of the project to switch to
Returns: Confirmation message with project summary
Example: switch_project("work-notes") switch_project("personal-journal")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "Project Name",
"type": "string"
}
},
"required": [
"project_name"
],
"type": "object"
}