delete_team_note
Remove a note from a team's workspace by specifying the note ID and team path using the HackMD MCP Server integration. Simplify note management for collaborative projects.
Instructions
Delete a note in a team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | Note ID | |
teamPath | Yes | Team path |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"noteId": {
"description": "Note ID",
"type": "string"
},
"teamPath": {
"description": "Team path",
"type": "string"
}
},
"required": [
"teamPath",
"noteId"
],
"type": "object"
}