get_note
Retrieve a specific note by its ID using the HackMD MCP Server, enabling AI assistants to access and manage note content directly via the HackMD API.
Instructions
Get a note by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | Note ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"noteId": {
"description": "Note ID",
"type": "string"
}
},
"required": [
"noteId"
],
"type": "object"
}