add-note
Create and store notes with a name and content using a browser-based MCP server. Organize and manage your notes efficiently with customizable summary options.
Instructions
Add a new note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"content"
],
"type": "object"
}