Database Updater MCP Server

by AnuragRai017
Verified

create_note

Create a new note

Input Schema

NameRequiredDescriptionDefault
contentYesText content of the note
titleYesTitle of the note

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Text content of the note", "type": "string" }, "title": { "description": "Title of the note", "type": "string" } }, "required": [ "title", "content" ], "type": "object" }

You must be authenticated.

Other Tools