getNote
Retrieve specific notes by their ID using a TypeScript-based MCP server designed for note-taking CRUD operations with JSON responses.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | The ID of the note to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"noteId": {
"description": "The ID of the note to retrieve",
"type": "string"
}
},
"required": [
"noteId"
],
"type": "object"
}