Simple TypeScript MCP Server

by jasonkneen

updateNote

Modify note details by providing the note ID, updated title, and content. Enables accurate and efficient note management in the Simple TypeScript MCP Server.

Input Schema

NameRequiredDescriptionDefault
contentNoThe updated content of the note
noteIdYesThe ID of the note to update
titleNoThe updated title of the note

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "content": { "description": "The updated content of the note", "type": "string" }, "noteId": { "description": "The ID of the note to update", "type": "string" }, "title": { "description": "The updated title of the note", "type": "string" } }, "required": [ "noteId" ], "type": "object" }

You must be authenticated.

Other Tools from Simple TypeScript MCP Server

Related Tools

    ID: h4hg5cqqpp