HackMD MCP Server

by yuna0x0
Verified

create_team_note

Generate and manage collaborative notes within a team on HackMD by specifying title, content, permissions, and custom permalink.

Instructions

Create a new note in a team

Input Schema

NameRequiredDescriptionDefault
payloadYesCreate note options
teamPathYesTeam path

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" }, "teamPath": { "description": "Team path", "type": "string" } }, "required": [ "teamPath", "payload" ], "type": "object" }

You must be authenticated.

Other Tools from HackMD MCP Server

Related Tools

ID: 2lnhpu8zmr