write_note
Create and save markdown-formatted notes directly to Flomo using this tool. Ideal for quick text input and organization through the MCP Server Flomo interface.
Instructions
Write note to flomo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Text content of the note with markdown format |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Text content of the note with markdown format",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}