createMemo
Create and store structured memos with assigned titles, content, and categories for easy organization and retrieval in the MCP server memo-mcp.
Instructions
Create a new memo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categoryId | No | ||
content | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"categoryId": {
"type": "string"
},
"content": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"content",
"title"
],
"type": "object"
}