ToolBox MCP Server

by xiaoguomeiyitian
Verified

create_note

Input Schema

NameRequiredDescriptionDefault
contentYesNote content
titleYesNote title

Input Schema (JSON Schema)

{ "description": "Create a new note", "name": "create_note", "properties": { "content": { "description": "Note content", "type": "string" }, "title": { "description": "Note title", "type": "string" } }, "required": [ "title", "content" ], "type": "object" }