Skip to main content
Glama
iswalle

GetNote MCP Server

by iswalle

delete_note

Remove notes from the GetNote platform by moving them to the trash. Specify the note ID to delete content.

Instructions

删除笔记(移入回收站)。需要 note.content.trash scope。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
note_idYes笔记 ID

Implementation Reference

  • The actual implementation of the deleteNote function which sends the network request.
    async deleteNote(note_id: number | string) {
      return this.request<DeleteNoteResp>("POST", "/resource/note/delete", undefined, {
        note_id,
      });
    }
  • src/index.ts:152-154 (registration)
    Registration of the delete_note tool in the MCP tool list.
    name: "delete_note",
    description: "删除笔记(移入回收站)。需要 note.content.trash scope。",
    inputSchema: {
  • The handler switch case that triggers deleteNote.
    case "delete_note": {
      return client.deleteNote(input.note_id as number | string);
    }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/iswalle/getnote-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server