writeNote
Create or update notes with a unique ID, title, summary, tags, and content on the MCP Notes server for organized and structured documentation.
Instructions
Creates or updates a note with a unique ID suffixed by a random number.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the note | |
id | Yes | Unique identifier of the note, should be unique enough like "a-note-about-python-file-server-design-109". | |
summary | Yes | Short summary of the note | |
tags | Yes | Tags of the note | |
title | Yes | Title of the note, describe what was inside the content. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "Content of the note",
"type": "string"
},
"id": {
"description": "Unique identifier of the note, should be unique enough like \"a-note-about-python-file-server-design-109\".",
"type": "string"
},
"summary": {
"description": "Short summary of the note",
"type": "string"
},
"tags": {
"description": "Tags of the note",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Title of the note, describe what was inside the content.",
"type": "string"
}
},
"required": [
"id",
"title",
"summary",
"tags",
"content"
],
"type": "object"
}