create_note
Generate a micro-note with customizable privacy settings (public or private) to store concise information efficiently. Integrates with Emlog MCP Server for streamlined content management.
Instructions
Create a new micro-note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
private | No | Whether the note is private (y) or public (n) | |
t | Yes | The content of the micro-note |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"private": {
"description": "Whether the note is private (y) or public (n)",
"enum": [
"y",
"n"
],
"type": "string"
},
"t": {
"description": "The content of the micro-note",
"type": "string"
}
},
"required": [
"t"
],
"type": "object"
}