create_note
Generate and customize notes on HackMD by setting title, content, permissions, and custom permalinks through the MCP Server.
Instructions
Create a new note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
payload | Yes | Create note options |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"payload": {
"additionalProperties": false,
"description": "Create note options",
"properties": {
"commentPermission": {
"description": "Comment permission",
"enum": [
"disabled",
"forbidden",
"owners",
"signed_in_users",
"everyone"
],
"type": "string"
},
"content": {
"description": "Note content",
"type": "string"
},
"permalink": {
"description": "Custom permalink",
"type": "string"
},
"readPermission": {
"description": "Read permission",
"enum": [
"owner",
"signed_in",
"guest"
],
"type": "string"
},
"title": {
"description": "Note title",
"type": "string"
},
"writePermission": {
"description": "Write permission",
"enum": [
"owner",
"signed_in",
"guest"
],
"type": "string"
}
},
"type": "object"
}
},
"required": [
"payload"
],
"type": "object"
}