write_note
Create and save notes to the inBox note-taking system via the MCP-Server-Inbox. Add titles and markdown-formatted content with ease through any MCP client.
Instructions
Write note to inBox
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Text content of the note with markdown format | |
title | No | Optional title of the note |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Text content of the note with markdown format",
"type": "string"
},
"title": {
"description": "Optional title of the note",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}