deleteNote
Remove a specific note by its ID from the Simple TypeScript MCP Server, enabling efficient management of note data within the system.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| noteId | Yes | The ID of the note to delete | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "noteId": {
      "description": "The ID of the note to delete",
      "type": "string"
    }
  },
  "required": [
    "noteId"
  ],
  "type": "object"
}