add_note
Attach notes to specific projects with details like content and category, using the MCP Project Context Server to maintain persistent project information and eliminate redundant context explanations.
Instructions
Add a note to the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Note category | |
content | Yes | Note content | |
projectId | Yes | Project ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"description": "Note category",
"type": "string"
},
"content": {
"description": "Note content",
"type": "string"
},
"projectId": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"projectId",
"content"
],
"type": "object"
}